optimize Dockerfile using scratch image

This commit is contained in:
Joel Schmid 2021-04-03 13:29:39 +02:00
parent 346ad3b990
commit 7fb0ebff20

View file

@ -1,13 +1,16 @@
FROM golang:1.16
############################
# STEP 1 build executable binary
############################
FROM golang:1.16 AS builder
RUN mkdir -p /weather-api
WORKDIR /weather-api
ADD . /weather-api
RUN go build ./main.go
RUN env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -ldflags "$(govvv -flags)" -o app
# STEP 2 build a small image
############################
FROM scratch
COPY --from=builder /weather-api/app /app
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
EXPOSE 10000
CMD ["./main"]
ENTRYPOINT ["/app"]