Run update.sh

This commit is contained in:
Docker Library Bot 2025-02-10 10:09:39 -08:00
parent 7f0ca04705
commit d06cd9af6e
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ WORKDIR /usr/src/app
# pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
COPY go.mod go.sum ./
RUN go mod download && go mod verify
RUN go mod download
COPY . .
RUN go build -v -o /usr/local/bin/app ./...