fix: dockerfile

This commit is contained in:
devthejo 2023-12-16 13:23:51 +01:00
parent 734ffe30e1
commit 06aa71dc8f
Signed by: devthejo
GPG key ID: C04215C627711F5C

View file

@ -1,10 +1,26 @@
FROM devthefuture/init-container-toolbox:latest@sha256:9511484e313d051713935aa32e91801781b9074ab78ea60f116f9e0dc61a3541 ARG ALPINE_VERSION=3
FROM alpine:$ALPINE_VERSION
RUN addgroup -g 1000 user \
&& adduser \
--disabled-password \
--gecos "" \
--ingroup "user" \
--uid 1000 \
"user"
RUN apk add --update --no-cache \
ca-certificates \
curl \
bash \
tar \
jq \
openssh-client
USER 0
ARG HELM_VERSION=3.10.0 ARG HELM_VERSION=3.10.0
RUN curl -sSL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz \ RUN curl -sSL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz \
&& cp linux-amd64/helm /usr/local/bin/helm && cp linux-amd64/helm /usr/local/bin/helm
USER 1000
USER 1000
COPY entrypoint.sh / COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]