We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb1c88 commit 80ea3bfCopy full SHA for 80ea3bf
Dockerfile
@@ -5,6 +5,14 @@ ARG KUBE_VERSION="1.21.2"
5
6
COPY entrypoint.sh /entrypoint.sh
7
8
+RUN apk add --no-cache \
9
+ python3 \
10
+ py3-pip \
11
+ && pip3 install --upgrade pip \
12
+ && pip3 install --no-cache-dir \
13
+ awscli \
14
+ && rm -rf /var/cache/apk/*
15
+
16
RUN chmod +x /entrypoint.sh && \
17
apk add --no-cache --update openssl curl ca-certificates && \
18
curl -L https://storage.googleapis.com/kubernetes-release/release/v$KUBE_VERSION/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl && \
0 commit comments