Skip to content

Commit

Permalink
Upgrade pip inside container
Browse files Browse the repository at this point in the history
We are seeing some issues in CI where `awscli` fails to install with
errors deep in the bowels of pip. I'm unable to reproduce this
locally, but I suspect that there's an network issue in Travis that is
causing us to need to retry downloads, which is hitting some bad path
inside the very old version of `pip` we have

Let's try upgrading it to the latest version (19.X vs 8.X!) and see if
it helps.
  • Loading branch information
ellismg committed May 6, 2019
1 parent 95e240c commit 59ad9d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws-ts-thumbnailer/docker-ffmpeg-thumb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM jrottenberg/ffmpeg

RUN apt-get update && \
apt-get install python-dev python-pip -y && \
apt-get clean
apt-get clean && pip install --upgrade pip

RUN pip install awscli

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM jrottenberg/ffmpeg

RUN apt-get update && \
apt-get install python-dev python-pip -y && \
apt-get clean
apt-get clean && pip install --upgrade pip

RUN pip install awscli

Expand Down
2 changes: 1 addition & 1 deletion cloud-js-thumbnailer/docker-ffmpeg-thumb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM jrottenberg/ffmpeg

RUN apt-get update && \
apt-get install python-dev python-pip -y && \
apt-get clean
apt-get clean && pip install --upgrade pip

RUN pip install awscli

Expand Down

0 comments on commit 59ad9d1

Please sign in to comment.