forked from helm-unittest/helm-unittest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
36 lines (30 loc) · 1.34 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM --platform=$BUILDPLATFORM alpine:3@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
# variable "HELM_VERSION" and "PLUGIN_VERSION" must be passed as docker environment variables during the image build
# docker buildx build --no-cache --platform linux/amd64,linux/arm64 --build-arg HELM_VERSION=3.10.0 --build-arg PLUGIN_VERSION=0.3.0 -t alpine/helm-unittest:3.10.0-0.3.0 .
ARG BUILDPLATFORM
ARG TARGETOS
ARG TARGETARCH
ARG HELM_VERSION
ARG PLUGIN_VERSION
ENV HELM_BASE_URL="https://get.helm.sh"
ENV HELM_TAR_FILE="helm-v${HELM_VERSION}-${TARGETOS}-${TARGETARCH}.tar.gz"
ENV PLUGIN_URL="https://github.com/helm-unittest/helm-unittest/"
# Install the plugin for all users
ENV HELM_DATA_HOME=/usr/local/share/helm
# Ensure to have latest packages
RUN apk upgrade --no-cache && \
apk add --no-cache --update bash ca-certificates curl git && \
curl -L ${HELM_BASE_URL}/${HELM_TAR_FILE} | tar xvz && \
mv ${TARGETOS}-${TARGETARCH}/helm /usr/bin/helm && \
chmod +x /usr/bin/helm && \
helm plugin install ${PLUGIN_URL} --version ${PLUGIN_VERSION} && \
rm -rf ${TARGETOS}-${TARGETARCH} && \
apk del curl git bash && \
rm -f /var/cache/apk/* && \
addgroup -S helmgroup && \
adduser -u 1000 -S helmuser -G helmgroup
USER helmuser
WORKDIR /apps
VOLUME [ "/apps" ]
ENTRYPOINT ["helm", "unittest"]
CMD ["--help"]