forked from CheyiLin/docker-awscli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zack Lin
committed
Sep 3, 2020
1 parent
9539be0
commit 43c89df
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ FROM docker:stable-git | |
LABEL maintainer="Cheyi Lin <[email protected]>" | ||
|
||
ARG AWS_CLI_VERSION | ||
ENV AWS_CLI_VERSION=${AWS_CLI_VERSION:-1.18.53} | ||
ENV AWS_CLI_VERSION=${AWS_CLI_VERSION:-1.18.131} | ||
|
||
RUN apk --no-cache add bash openssl gettext curl python3 \ | ||
&& curl -s https://bootstrap.pypa.io/get-pip.py | python3 - \ | ||
&& pip install awscli==$AWS_CLI_VERSION | ||
&& pip install --no-cache-dir awscli==${AWS_CLI_VERSION} |