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

feat: add trusted root CA's

Signed-off-by: Noel Georgi <git@frezbo.dev>
This commit is contained in:
Noel Georgi 2021-08-06 15:17:35 +05:30
parent e4b52a930d
commit 08f916db48
No known key found for this signature in database
GPG key ID: FC9348B60BC2B4EA

View file

@ -25,7 +25,9 @@ USER 1234
COPY --from=builder /app/LICENSE.md . COPY --from=builder /app/LICENSE.md .
COPY --from=builder /app/build/policyreporter /app/policyreporter 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
EXPOSE 2112 EXPOSE 2112
ENTRYPOINT ["/app/policyreporter", "run"] ENTRYPOINT ["/app/policyreporter", "run"]