Dockerfile
Security
Tricks
print all executed commands:
set -x
- disable withset +x
- see https://stackoverflow.com/a/36273740/271118do not aburt when single command fails, append this:
|| true
- see https://unix.stackexchange.com/a/325727/454800