Upgrade Python packages using pip.

pull/1295/head
Josh Haberman 9 years ago
parent f6153b540a
commit 78f9b68600
  1. 8
      tools/docker/Dockerfile

@ -60,13 +60,19 @@ RUN apt-get update && apt-get install -y \
openjdk-7-jdk \
# -- For python / python_cpp -- \
python-setuptools \
python-tox \
python-pip \
python-dev \
python2.6-dev \
python3.3-dev \
python3.4-dev \
&& apt-get clean
# These packages exist in apt-get, but their versions are too old, so we have
# to get updates from pip.
RUN pip install pip --upgrade
RUN pip install virtualenv tox
# Prepare ccache
RUN ln -s /usr/bin/ccache /usr/local/bin/gcc
RUN ln -s /usr/bin/ccache /usr/local/bin/g++

Loading…
Cancel
Save