Skip to content

Commit 80ea3bf

Browse files
sreesree
sree
authored and
sree
committed
add aws cli
1 parent 4eb1c88 commit 80ea3bf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ ARG KUBE_VERSION="1.21.2"
55

66
COPY entrypoint.sh /entrypoint.sh
77

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+
816
RUN chmod +x /entrypoint.sh && \
917
apk add --no-cache --update openssl curl ca-certificates && \
1018
curl -L https://storage.googleapis.com/kubernetes-release/release/v$KUBE_VERSION/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl && \

0 commit comments

Comments
 (0)