What does ‘set -x’ do in Dockerfile?
The -e causes the command to stop on any errors. A more typical syntax is to separate commands with && to stop on any error. The -x causes the shell to output each command being run. This is useful for debugging scripts. From the bash man page under set: -e Exit immediately if a pipeline … Read more