We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb23748 commit 950ddf4Copy full SHA for 950ddf4
1 file changed
Dockerfile
@@ -3,7 +3,11 @@ MAINTAINER Gabriel A. Monroy <gabriel@opdemand.com>
3
4
# install required system packages
5
RUN apt-get update
6
-RUN apt-get install -yq python-pip python-dev libpq-dev
+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
11
12
# install chef
13
RUN apt-get install -yq ruby1.9.1 rubygems
0 commit comments