We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This following line is causing problems when trying to build the image and has broken our automated pipeline.
delegate-dockerfile/Dockerfile-ubuntu
Line 45 in 5973f7e
This is giving error '#12 0.672 /bin/sh: 1: set: Illegal option -o pipefail'
Ubuntu by default is using the sh shell, but pipeline -o fail is specific to bash and cannot be used in sh
To solve this step should be executed as RUN /bin/bash set -o pipefail or the set -o pipefail removed so it is compliant with sh.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This following line is causing problems when trying to build the image and has broken our automated pipeline.
delegate-dockerfile/Dockerfile-ubuntu
Line 45 in 5973f7e
This is giving error '#12 0.672 /bin/sh: 1: set: Illegal option -o pipefail'
Ubuntu by default is using the sh shell, but pipeline -o fail is specific to bash and cannot be used in sh
To solve this step should be executed as RUN /bin/bash set -o pipefail or the set -o pipefail removed so it is compliant with sh.
The text was updated successfully, but these errors were encountered: