Fixed build

This commit is contained in:
Marc Ole Bulling
2021-12-10 19:16:17 +01:00
parent a473df10fd
commit 442e75bb77
2 changed files with 2 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ RUN \
COPY go.mod /tmp/tmp/go.mod
RUN cd /tmp/tmp/ && go mod download && rm -r /tmp/tmp
RUN cd /tmp/tmp/ && go mod tidy && go mod download && rm -r /tmp/tmp
COPY entrypoint.sh /entrypoint.sh

View File

@@ -6,6 +6,7 @@ targets=${@-"darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 windows/am
cd /usr/src/myapp
go generate ./...
go mod tidy
for target in $targets; do
for tag in "full" "noaws"; do