-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathDockerfile
More file actions
19 lines (15 loc) · 793 Bytes
/
Copy pathDockerfile
File metadata and controls
19 lines (15 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM alpine:3.24.1
LABEL org.opencontainers.image.authors="FairwindsOps, Inc." \
org.opencontainers.image.vendor="FairwindsOps, Inc." \
org.opencontainers.image.title="Nova" \
org.opencontainers.image.description="Nova is a cli tool to find outdated or deprecated Helm charts running in your Kubernetes cluster." \
org.opencontainers.image.documentation="https://nova.docs.fairwinds.com/" \
org.opencontainers.image.source="https://github.com/FairwindsOps/nova" \
org.opencontainers.image.url="https://github.com/FairwindsOps/nova" \
org.opencontainers.image.licenses="Apache License 2.0"
# Install CA bundle for TLS.
RUN apk --no-cache add ca-certificates
RUN apk --no-cache add --upgrade libcrypto3 libssl3
USER nobody
COPY nova /
CMD ["/nova"]