diff --git a/Dockerfile b/Dockerfile index df00ca4..d5965f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,9 +22,11 @@ COPY go.mod . COPY go.sum . COPY ./ ./ -RUN make lint +# don't lint again during build because there's no golangci-lint in this +# image and we already did it in a previous stage +#RUN make lint +RUN make mfer RUN go mod vendor -RUN make RUN tar -c . | bzip2 > /src.tbz2