Skip to content

Commit 70969eb

Browse files
committed
chore(pip): update pip installs to 1.5.6
1 parent 2a8aad8 commit 70969eb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN dpkg-reconfigure openssh-server
2929
RUN mkdir -p /var/run/sshd
3030

3131
# install pip
32-
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.5/contrib/get-pip.py | python -
32+
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.6/contrib/get-pip.py | python -
3333

3434
# install hook dependencies
3535
RUN pip install pyyaml==3.11 requests==2.4.1

controller/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get update && \
2020
apt-get install -yq python-dev libpq-dev libyaml-dev git openssh-client
2121

2222
# install pip
23-
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.5/contrib/get-pip.py | python -
23+
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.6/contrib/get-pip.py | python -
2424

2525
# add a deis user that has passwordless sudo (for now)
2626
RUN useradd deis --groups sudo --home-dir /app --shell /bin/bash

registry/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y git-core build-essential python-dev \
1919
libevent-dev python-openssl liblzma-dev
2020

2121
# install pip
22-
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.5/contrib/get-pip.py | python -
22+
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.6/contrib/get-pip.py | python -
2323

2424
# create a registry user
2525
RUN useradd -s /bin/bash registry

tests/bin/setup-node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ echo 'export PATH=$PATH:/usr/local/go/bin' >> /etc/profile
2929

3030
# install test suite requirements
3131
apt-get install -yq python-dev libpq-dev libyaml-dev git postgresql postgresql-client
32-
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.5/contrib/get-pip.py | python -
32+
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.6/contrib/get-pip.py | python -
3333
pip install virtualenv
3434

3535
# create jenkins user and install node bootstrap script

0 commit comments

Comments
 (0)