diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-09-03 10:53:06 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-09-03 10:53:06 +0200 |
commit | 4982bdd83988d8521b1163cf5070bedf968ddb15 (patch) | |
tree | 109d30f9a4cda0bfcc6d3e6828274b94fe57ff3d /Dockerfile | |
parent | d38e20337056b05d970b5140335953ca7b15ca8c (diff) | |
download | bagage-4982bdd83988d8521b1163cf5070bedf968ddb15.tar.gz bagage-4982bdd83988d8521b1163cf5070bedf968ddb15.zip |
Fix the Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ FROM golang:1.17.0-alpine3.14 as builder ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64 RUN apk update && apk add --no-cache ca-certificates && update-ca-certificates WORKDIR /opt -COPY main.go go.mod go.sum /opt/ +COPY *.go go.mod go.sum /opt/ RUN go build . FROM scratch |