From 2cf5cf65b03a838aaff0d572a77fe0605cd89ce8 Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Fri, 30 Apr 2021 10:53:11 +0100 Subject: [PATCH] format: Use go modules Signed-off-by: Dave Tucker --- pkg/format/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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