This replaces bash with the docker command, freeing memory and automatically returning the exit code of the docker command as the exit code of the shell script.
4 lines
72 B
Bash
Executable File
4 lines
72 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
exec docker build -t pillar_base -f base.docker .;
|