Skip to content

Commit 04553ba

Browse files
committed
Add aws cli
1 parent da460a8 commit 04553ba

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

php7.2/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ RUN curl -o /usr/local/bin/kubectl -LO https://storage.googleapis.com/kubernetes
2727
./install_helm.sh -v ${HELM_VERSION} && \
2828
helm init --client-only
2929

30+
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
31+
python get-pip.py && \
32+
pip install awscli
33+
3034
# All further commands will be performed as the docker user.
3135
USER docker
3236
SHELL ["/bin/bash", "-c"]

php7.3/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ RUN curl -o /usr/local/bin/kubectl -LO https://storage.googleapis.com/kubernetes
2727
./install_helm.sh -v ${HELM_VERSION} && \
2828
helm init --client-only
2929

30+
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
31+
python get-pip.py && \
32+
pip install awscli
33+
3034
# All further commands will be performed as the docker user.
3135
USER docker
3236
SHELL ["/bin/bash", "-c"]

php7.4/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ RUN curl -o /usr/local/bin/kubectl -LO https://storage.googleapis.com/kubernetes
2727
./install_helm.sh -v ${HELM_VERSION} && \
2828
helm init --client-only
2929

30+
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
31+
python get-pip.py && \
32+
pip install awscli
33+
3034
# All further commands will be performed as the docker user.
3135
USER docker
3236
SHELL ["/bin/bash", "-c"]

0 commit comments

Comments
 (0)