1
0
Fork 0
mirror of https://github.com/kyverno/policy-reporter.git synced 2024-12-14 11:57:32 +00:00
policy-reporter/Dockerfile

34 lines
868 B
Text
Raw Permalink Normal View History

FROM golang:1.23 AS builder
2021-02-19 23:58:01 +00:00
ARG LD_FLAGS='-s -w -linkmode external -extldflags "-static"'
2021-06-27 10:11:39 +00:00
ARG TARGETPLATFORM
2021-02-19 23:58:01 +00:00
WORKDIR /app
2021-06-27 10:11:39 +00:00
RUN export GOOS=$(echo ${TARGETPLATFORM} | cut -d / -f1) && \
export GOARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2)
COPY go.* ./
RUN go env && go mod download
2021-06-27 10:11:39 +00:00
COPY . .
2021-02-19 23:58:01 +00:00
RUN CGO_ENABLED=1 go build -ldflags="${LD_FLAGS}" -tags="sqlite_unlock_notify" -o /app/build/policyreporter -v
2021-02-19 23:58:01 +00:00
2021-06-27 10:11:39 +00:00
FROM scratch
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/templates /app/templates
2021-02-19 23:58:01 +00:00
COPY --from=builder /app/build/policyreporter /app/policyreporter
# 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 8080
2021-02-19 23:58:01 +00:00
ENTRYPOINT ["/app/policyreporter", "run"]