From 1ea3269982d82a76c82018b934bea8412437024f Mon Sep 17 00:00:00 2001 From: Philip Craig <689193+philipcraig@users.noreply.github.com> Date: Mon, 10 Dec 2018 23:36:01 +0000 Subject: [PATCH] Bump rustup version (#28) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index dafc76a..c5ef737 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,11 +11,11 @@ RUN apt-get -y update && \ software-properties-common # Software dependencies - sorted alphabetically +# Note: Python's pip is used to install CMake following https://blog.kitware.com/cmake-python-wheels/ RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test && \ apt-get -y update && \ apt-get install -y \ clang \ - cmake \ curl \ dos2unix \ git \ @@ -56,9 +56,9 @@ RUN mkdir warmup \ # Python dependencies -RUN pip2 install --upgrade pip==9.0.3 && \ +RUN pip2 install --upgrade pip==9.0.3 cmake && \ pip2 install jinja2 nose pycodestyle virtualenv && \ - pip3 install --upgrade pip==9.0.3 && \ + pip3 install --upgrade pip==9.0.3 cmake && \ pip3 install jinja2 nose pycodestyle virtualenv # Ruby dependencies