convox / convox

Set the SHELL option -o pipefail before using RUN with a pipe character DOK-DL4006
Bug risk
Major
12 days agoa year old
Set the SHELL option -o pipefail before RUN with a pipe in it. If you are using /bin/sh in an alpine image or if your shell is symlinked to busybox then consider explicitly setting your SHELL to /bin/ash, or disable this check
1FROM golang:1.11
2
3RUN curl -s https://download.docker.com/linux/static/stable/x86_64/docker-18.03.1-ce.tgz | \4    tar -C /usr/bin --strip-components 1 -xz
5
6COPY . $GOPATH/src/github.com/convox/convox