Skip to content

Commit

Permalink
Merge pull request #10069 from tianon/docker-py-commit
Browse files Browse the repository at this point in the history
Switch docker-py clone to use an explicit commit for natural cache-busting
  • Loading branch information
crosbymichael committed Jan 13, 2015
2 parents 99a15ec + 3c01c97 commit 0db6bb3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ RUN git clone -b buildroot-2014.02 https://github.com/jpetazzo/docker-busybox.gi
RUN curl -sSL -o /cirros.tar.gz https://github.com/ewindisch/docker-cirros/raw/1cded459668e8b9dbf4ef976c94c05add9bbd8e9/cirros-0.3.0-x86_64-lxc.tar.gz

# Get the "docker-py" source so we can run their integration tests
RUN git clone -b 0.7.1 https://github.com/docker/docker-py.git /docker-py
ENV DOCKER_PY_COMMIT aa19d7b6609c6676e8258f6b900dea2eda1dbe95
RUN git clone https://github.com/docker/docker-py.git /docker-py \
&& cd /docker-py \
&& git checkout -q $DOCKER_PY_COMMIT

# Setup s3cmd config
RUN { \
Expand Down

0 comments on commit 0db6bb3

Please sign in to comment.