mongoproov/Dockerfile

18 lines
455 B
Docker
Raw Permalink Normal View History

2022-11-07 11:46:35 +00:00
# https://github.com/jtagcat/dotfiles/blob/main/scripts/template/gobuild.Dockerfile
FROM golang:1.19 AS builder
WORKDIR /wd
COPY go.mod go.sum
RUN go mod download
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o mongoproov
FROM alpine
LABEL org.opencontainers.image.source="https://git.k-space.ee/rasmus/mongoproov"
WORKDIR /wd
#RUN apk --no-cache add ca-certificates
COPY --from=builder /wd/mongoproov ./
CMD ["./mongoproov"]