Skip to content

Commit 8fb2431

Browse files
authored
Merge pull request #16 from vimeda/hotfix/python-fail
Fix for failing docker build due to python deps
2 parents f29454d + 36e7054 commit 8fb2431

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
FROM alpine:3.16.0
1+
FROM alpine:3.17.0
22

33
ENV BASE_URL="https://get.helm.sh"
44

55
ENV HELM_2_FILE="helm-v2.17.0-linux-amd64.tar.gz"
66
ENV HELM_3_FILE="helm-v3.8.1-linux-amd64.tar.gz"
77

8-
98
ENV PYTHONPATH "/usr/lib/python3.11/site-packages/"
109

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 && \
10+
RUN apk add --no-cache ca-certificates jq curl bash nodejs aws-cli && \
1411
# Install helm version 2:
1512
curl -L ${BASE_URL}/${HELM_2_FILE} |tar xvz && \
1613
mv linux-amd64/helm /usr/bin/helm && \

0 commit comments

Comments
 (0)