Skip to content

Commit ebc5acb

Browse files
committed
Pin pip at v1.5.4.
1 parent 4f6c72f commit ebc5acb

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update -q
1717
RUN apt-get install -yq lxc-docker-0.8.0
1818

1919
# install latest pip
20-
RUN wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
20+
RUN wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
2121
python get-pip.py && \
2222
rm get-pip.py
2323
# install hook dependencies

contrib/digitalocean/prepare-controller-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apt-get update
2525
apt-get upgrade -yq
2626

2727
# install latest pip
28-
wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
28+
wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
2929
python get-pip.py && \
3030
rm get-pip.py
3131
# install required packages

contrib/digitalocean/prepare-node-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apt-get update
2525
apt-get upgrade -yq
2626

2727
# install latest pip
28-
wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
28+
wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
2929
python get-pip.py && \
3030
rm get-pip.py
3131
# install required packages

contrib/ec2/prepare-controller-ami.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ apt-get update
3030
apt-get dist-upgrade -yq
3131

3232
# install latest pip
33-
wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
33+
wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
3434
python get-pip.py && \
3535
rm get-pip.py
3636
# install required packages

contrib/ec2/prepare-node-ami.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ apt-get update
3030
apt-get dist-upgrade -yq
3131

3232
# install latest pip
33-
wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
33+
wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
3434
python get-pip.py && \
3535
rm get-pip.py
3636
# install required packages

contrib/rackspace/prepare-node-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ apt-get update
3131
apt-get dist-upgrade -yq
3232

3333
# install latest pip
34-
wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
34+
wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
3535
python get-pip.py && \
3636
rm get-pip.py
3737
# install required packages

contrib/vagrant/prepare-ubuntu-box.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ apt-get update
3232
apt-get dist-upgrade -yq
3333

3434
# install latest pip
35-
wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
35+
wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
3636
python get-pip.py && \
3737
rm get-pip.py
3838
# install required packages

controller/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MAINTAINER Gabriel A. Monroy <gabriel@opdemand.com>
55
RUN apt-get update
66
RUN apt-get install -yq python-dev libpq-dev
77
# install latest pip
8-
RUN wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
8+
RUN wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
99
python get-pip.py && \
1010
rm get-pip.py
1111

registry/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN sed -i 's/main$/main universe/' /etc/apt/sources.list && apt-get update
66
RUN apt-get install -y git-core build-essential python-dev \
77
libevent-dev python-openssl liblzma-dev wget
88
# install latest pip
9-
RUN wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
9+
RUN wget -q https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py && \
1010
python get-pip.py && \
1111
rm get-pip.py
1212

0 commit comments

Comments
 (0)