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 f573316 commit 0361c90Copy full SHA for 0361c90
1 file changed
Dockerfile
@@ -49,12 +49,13 @@ FROM alpine:3.23
49
ARG BUILDDATE
50
LABEL buildDate=$BUILDDATE
51
RUN apk --no-cache upgrade && \
52
- apk add -U --no-cache ca-certificates jq bash && \
+ apk add -U --no-cache ca-certificates-bundle jq bash && \
53
+ apk del libcrypto3 libssl3 apk-tools zlib && \
54
adduser -D -u 1000 -s /bin/bash klipper-helm
55
WORKDIR /home/klipper-helm
56
COPY --chown=1000:1000 --from=plugins /root/.local/share/helm/plugins/ /home/klipper-helm/.local/share/helm/plugins/
57
COPY --from=extract /usr/bin/helm /usr/bin/entry /usr/bin/
58
ENTRYPOINT ["entry"]
59
ENV STABLE_REPO_URL=https://charts.helm.sh/stable/
60
ENV TIMEOUT=
-USER 1000
61
+USER 1000
0 commit comments