We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7538147 commit 48e4495Copy full SHA for 48e4495
Dockerfile
@@ -1,3 +1,9 @@
1
+# Copy the CA certificates from a builder image
2
+FROM alpine:latest AS builder
3
+RUN apk update \
4
+ && apk add --no-cache ca-certificates
5
+
6
FROM scratch
7
+COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
8
COPY prometheus-cve-exporter /usr/bin/prometheus-cve-exporter
9
ENTRYPOINT ["/usr/bin/prometheus-cve-exporter"]
0 commit comments