mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
31 lines
No EOL
607 B
Docker
31 lines
No EOL
607 B
Docker
FROM golang:1.16-buster as builder
|
|
|
|
ARG LD_FLAGS
|
|
ARG TARGETPLATFORM
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN export GOOS=$(echo ${TARGETPLATFORM} | cut -d / -f1) && \
|
|
export GOARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2)
|
|
|
|
RUN go env
|
|
|
|
RUN go get -d -v \
|
|
&& go install -v
|
|
|
|
RUN CGO_ENABLED=0 go build -ldflags="${LD_FLAGS}" -o /app/build/policyreporter -v
|
|
|
|
FROM scratch
|
|
LABEL MAINTAINER "Frank Jogeleit <frank.jogeleit@gweb.de>"
|
|
|
|
WORKDIR /app
|
|
|
|
USER 1234
|
|
|
|
COPY --from=builder /app/LICENSE.md .
|
|
COPY --from=builder /app/build/policyreporter /app/policyreporter
|
|
|
|
EXPOSE 2112
|
|
|
|
ENTRYPOINT ["/app/policyreporter", "run"] |