tweetsvg/Dockerfile

14 lines
438 B
Docker
Raw Normal View History

2021-03-21 09:13:33 +00:00
FROM golang:1.16-alpine AS builder
2021-02-18 19:41:27 +00:00
RUN apk update && apk add --no-cache git && apk add -U --no-cache ca-certificates
2021-02-18 18:32:36 +00:00
WORKDIR /app/
ADD go.mod go.sum ./
RUN go mod download
ADD . .
2021-04-09 20:50:09 +00:00
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags="-w -s" -o tweetsvg .
2021-02-18 18:32:36 +00:00
FROM scratch
WORKDIR /app/
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /app/tweetsvg /app/tweetsvg
ENTRYPOINT ["/app/tweetsvg"]