download all go modules

This commit is contained in:
Johannes Theiner 2020-07-20 19:48:20 +02:00
parent f8a97cdc6e
commit 0324b2fc99
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /src
EXPOSE 8080
RUN go mod download
RUN go get -u ./...
RUN go build -o main .
ENTRYPOINT ["/src/main"]