2021-11-11 08:55:28 +00:00
|
|
|
FROM golang:1.17.2 as builder
|
2021-02-19 23:58:01 +00:00
|
|
|
|
2021-06-27 10:11:39 +00:00
|
|
|
ARG LD_FLAGS
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
|
2021-02-19 23:58:01 +00:00
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
|
2021-06-27 10:11:39 +00:00
|
|
|
RUN export GOOS=$(echo ${TARGETPLATFORM} | cut -d / -f1) && \
|
|
|
|
export GOARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2)
|
|
|
|
|
|
|
|
RUN go env
|
|
|
|
|
2021-02-19 23:58:01 +00:00
|
|
|
RUN go get -d -v \
|
|
|
|
&& go install -v
|
|
|
|
|
2021-06-27 10:11:39 +00:00
|
|
|
RUN CGO_ENABLED=0 go build -ldflags="${LD_FLAGS}" -o /app/build/policyreporter -v
|
2021-02-19 23:58:01 +00:00
|
|
|
|
2021-06-27 10:11:39 +00:00
|
|
|
FROM scratch
|
2021-10-18 09:07:38 +00:00
|
|
|
LABEL MAINTAINER="Frank Jogeleit <frank.jogeleit@gweb.de>"
|
2021-02-19 23:58:01 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
USER 1234
|
|
|
|
|
|
|
|
COPY --from=builder /app/LICENSE.md .
|
|
|
|
COPY --from=builder /app/build/policyreporter /app/policyreporter
|
2021-08-06 09:47:35 +00:00
|
|
|
# copy the debian's trusted root CA's to the final image
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2021-02-19 23:58:01 +00:00
|
|
|
|
|
|
|
EXPOSE 2112
|
|
|
|
|
2021-08-06 09:47:35 +00:00
|
|
|
ENTRYPOINT ["/app/policyreporter", "run"]
|