holiday-api/dockerfile

22 lines
546 B
Plaintext
Raw Permalink Normal View History

2023-06-16 07:42:50 +00:00
### STAGE 1.a: Prepare certs ###
FROM alpine:latest as certs
RUN apk --update add ca-certificates
### STAGE 1.b: Build ###
FROM golang as go-build
WORKDIR /root
COPY go.mod go.sum ./
# install packages
RUN go mod download
COPY . .
ENV CGO_ENABLED=0
2023-06-20 14:10:46 +00:00
RUN go build -tags timetzdata holiday-api
2023-06-16 07:42:50 +00:00
### Stage 2: Run ###
FROM scratch
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
2023-06-20 14:10:46 +00:00
COPY --from=go-build /root/holiday-api /usr/bin/holiday-api
2023-07-11 19:52:56 +00:00
ADD templates templates/
ADD assets assets/
2023-06-20 14:10:46 +00:00
ENTRYPOINT ["holiday-api"]