Update build images to use python3

This commit is contained in:
Robert Marshall 2022-06-03 16:09:45 +00:00 committed by DJ Mountney
parent b3a9491cff
commit 5273f228fb
4 changed files with 4 additions and 69 deletions

View file

@ -10,7 +10,7 @@ ENV KUBECTL_VERSION=1.20.15
ENV KUBECTL_URL=https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl
# Install dependencies
RUN apk --no-cache add -U openssl curl tar gzip bash ca-certificates git python2 py-pip groff\
RUN apk --no-cache add -U openssl curl tar gzip bash ca-certificates git python3 py3-pip groff\
&& mkdir -p /opt
# Install kubectl
@ -29,4 +29,4 @@ RUN mkdir -p $HELM_HOME/plugins && \
helm plugin install https://github.com/instrumenta/helm-kubeval
# Install aws cli
RUN pip install awscli
RUN pip3 install awscli