Unverified Commit 08188cbb authored by Erik Wilson's avatar Erik Wilson Committed by GitHub

Merge pull request #1497 from joakimr-axis/joakimr-axis_dockerfileshellcmd

Dockerfile.dapper: Use = instead of == for portability
parents cbceb085 30f4cb60
......@@ -13,7 +13,7 @@ RUN rm -rf /go/src /go/pkg
ARG DAPPER_HOST_ARCH
ENV ARCH $DAPPER_HOST_ARCH
RUN if [ "${ARCH}" == "amd64" ]; then \
RUN if [ "${ARCH}" = 'amd64' ]; then \
curl -sL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s v1.15.0; \
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment