Skip to content

Commit 950ddf4

Browse files
committed
Install latest pip.
1 parent cb23748 commit 950ddf4

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ MAINTAINER Gabriel A. Monroy <gabriel@opdemand.com>
33

44
# install required system packages
55
RUN apt-get update
6-
RUN apt-get install -yq python-pip python-dev libpq-dev
6+
RUN apt-get install -yq python-dev libpq-dev
7+
# install latest pip
8+
RUN wget -q https://raw.github.com/pypa/pip/master/contrib/get-pip.py && \
9+
python get-pip.py && \
10+
rm get-pip.py
711

812
# install chef
913
RUN apt-get install -yq ruby1.9.1 rubygems

0 commit comments

Comments
 (0)