From 90957788063d8967885aaeb2ae3608254f94d0ec Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 26 Jan 2021 17:51:49 +0000 Subject: Install python3-venv --- Dockerfile | 1 + 1 file changed, 1 insertion(+) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 8ecc12a6..199b83e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ RUN apt-get install -y --no-install-recommends \ python3 \ python3-dev \ python3-tk \ + python3-venv \ python3-pip && \ pip3 install --no-cache-dir --upgrade setuptools && \ echo "alias python='python3'" >> /root/.bash_aliases && \ -- cgit v1.2.3 From 89277804d3602daeba9c11af401b9546996fefb3 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 26 Jan 2021 18:00:04 +0000 Subject: Install wheel package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 199b83e7..cac41ca1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN apt-get install -y --no-install-recommends \ echo "alias pip='pip3'" >> /root/.bash_aliases && \ cd /usr/local/bin && ln -s /usr/bin/python3 python && \ cd /usr/local/bin && ln -s /usr/bin/pip3 pip && \ - pip install virtualenv abed + pip install virtualenv abed wheel # Set the default shell to bash RUN mv /bin/sh /bin/sh.old && cp /bin/bash /bin/sh -- cgit v1.2.3