Use latest pip in Docker build

Turns out we're using whatever Ubuntu ships, which could go badly. :)

Change-Id: I2d41a9036f84f2ebcab96a5137642a4225d2b053
This commit is contained in:
Jim Rollenhagen
2015-05-07 16:31:35 -07:00
parent efba46a8a2
commit 7d1c852bee

View File

@@ -17,6 +17,7 @@ RUN apt-get update && \
# Install requirements separately, because pip understands a git+https url
# while setuptools doesn't
RUN pip install --upgrade pip
RUN pip install -r /tmp/ironic-python-agent/requirements.txt
# This will succeed because all the dependencies were installed previously