Skip to content

Commit

Permalink
Merge pull request #16 from vimeda/hotfix/python-fail
Browse files Browse the repository at this point in the history
Fix for failing docker build due to python deps
  • Loading branch information
libracoder authored Apr 19, 2023
2 parents f29454d + 36e7054 commit 8fb2431
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
FROM alpine:3.16.0
FROM alpine:3.17.0

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

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


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

RUN apk add --no-cache ca-certificates \
--repository http://dl-3.alpinelinux.org/alpine/edge/community/ \
jq curl bash nodejs aws-cli && \
RUN apk add --no-cache ca-certificates jq curl bash nodejs aws-cli && \
# Install helm version 2:
curl -L ${BASE_URL}/${HELM_2_FILE} |tar xvz && \
mv linux-amd64/helm /usr/bin/helm && \
Expand Down

0 comments on commit 8fb2431

Please # to comment.