aboutsummaryrefslogblamecommitdiff
path: root/Dockerfile
blob: 861bb6a2c30c16739d4e1e3cf5f33636a611bf7e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                                                              
                             






                                                                      
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 *.go go.mod go.sum /opt/
RUN go build .

FROM scratch 
COPY --from=builder /opt/bagage /
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
USER 1000:1000
ENTRYPOINT ["/bagage"]