Skip to content

Commit

Permalink
Hardcode awscli and s3cmd to the latest version to allow tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl Isenberg committed Nov 17, 2017
1 parent 3f67d5c commit 93a20a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk -v --update add \
less \
mailcap \
&& \
pip install --upgrade awscli s3cmd python-magic && \
pip install --upgrade awscli==1.11.188 s3cmd==2.0.1 python-magic && \
apk -v --purge del py-pip && \
rm /var/cache/apk/*
VOLUME /root/.aws
Expand Down
3 changes: 3 additions & 0 deletions awscli-latest.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

docker run --rm python:alpine pip search awscli | grep "^awscli " | sed "s/awscli (\(.*\)).*/\1/"
3 changes: 3 additions & 0 deletions s3cmd-latest.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

docker run --rm python:alpine pip search s3cmd | grep "^s3cmd " | sed "s/s3cmd (\(.*\)).*/\1/"

0 comments on commit 93a20a3

Please sign in to comment.