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.
2 parents f29454d + 36e7054 commit 8fb2431Copy full SHA for 8fb2431
Dockerfile
@@ -1,16 +1,13 @@
1
-FROM alpine:3.16.0
+FROM alpine:3.17.0
2
3
ENV BASE_URL="https://get.helm.sh"
4
5
ENV HELM_2_FILE="helm-v2.17.0-linux-amd64.tar.gz"
6
ENV HELM_3_FILE="helm-v3.8.1-linux-amd64.tar.gz"
7
8
-
9
ENV PYTHONPATH "/usr/lib/python3.11/site-packages/"
10
11
-RUN apk add --no-cache ca-certificates \
12
- --repository http://dl-3.alpinelinux.org/alpine/edge/community/ \
13
- jq curl bash nodejs aws-cli && \
+RUN apk add --no-cache ca-certificates jq curl bash nodejs aws-cli && \
14
# Install helm version 2:
15
curl -L ${BASE_URL}/${HELM_2_FILE} |tar xvz && \
16
mv linux-amd64/helm /usr/bin/helm && \
0 commit comments