From bb810fb728c50ca26e2bd59d090c4dfc383635a9 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 1 Feb 2022 22:30:43 -0800 Subject: [PATCH] this should fix ci --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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