diff --git a/pkg/format/Dockerfile b/pkg/format/Dockerfile index b3f24a566..74a1fc7cd 100644 --- a/pkg/format/Dockerfile +++ b/pkg/format/Dockerfile @@ -22,7 +22,7 @@ ENV GOPATH=/go PATH=$PATH:/go/bin # Hack to work around an issue with go on arm64 requiring gcc RUN [ $(uname -m) = aarch64 ] && apk add --no-cache gcc || true -COPY format.go /go/src/format/ +COPY . /go/src/format/ RUN go-compile.sh /go/src/format FROM scratch