summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Hansson <hansson.mattias@gmail.com>2019-03-28 18:49:35 +0100
committerNico Williams <nico@cryptonector.com>2019-03-29 08:19:41 -0500
commitc4062e09b9d91d9b192fd9609696cc304d0a9d06 (patch)
tree03414055bd5c9cad9b4dbdd5c674a1b0e2961ac3
parent70e04d6a8ecf87e80cb564fd39419ee36f4601e6 (diff)
Dockerfile: Add missing dependency to pip3
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 1c1753c1..4411f154 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,6 +19,7 @@ RUN apt-get update && \
bison \
flex \
python3 \
+ python3-pip \
wget && \
wget https://github.com/kkos/oniguruma/archive/v5.9.6.tar.gz -O onig-5.9.6.tar.gz && \
sha512sum onig-5.9.6.tar.gz | grep 6b048d345e148c9da38af7a8df76d4a358eb3d4db91fa7834076e511f526a63544284f212b0d56badbbd33112c8b458a5fff02bfbbda012ecfe478bc436ea679 && \
@@ -47,7 +48,8 @@ RUN apt-get update && \
bison \
git \
flex \
- python3 && \
+ python3 \
+ python3-pip && \
apt-get autoremove -y && \
rm -rf oniguruma-5.9.6 && \
rm -rf /var/lib/apt/lists/* /var/lib/gems