misc: Added python-six as a dependency in 18.04 docker
authorBobby R. Bruce <bbruce@ucdavis.edu>
Mon, 11 May 2020 17:46:12 +0000 (10:46 -0700)
committerBobby R. Bruce <bbruce@ucdavis.edu>
Tue, 12 May 2020 20:39:21 +0000 (20:39 +0000)
Previously the docker utilized Python-Pip. This is an intermediate
dependency we don't need. We can install the Python-six module directly
via the APT framework.

Change-Id: I30e3e1cdca802ca19422140f39af7dc9dc166ed7
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/28891
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
util/dockerfiles/ubuntu-18.04_all-dependencies/Dockerfile

index 95923f5d9a3664d5c0fd65a4821e191902378259..a0064b6aa98c7da144c4c32df8b2ee6cd53d2abd 100644 (file)
@@ -30,5 +30,4 @@ RUN apt -y update
 RUN apt -y upgrade
 RUN apt -y install build-essential git m4 scons zlib1g zlib1g-dev \
     libprotobuf-dev protobuf-compiler libprotoc-dev libgoogle-perftools-dev \
-    python-dev python python-pip doxygen
-RUN pip install six
+    python-dev python python-six doxygen