aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-16 01:27:11 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-16 01:27:11 +0000
commit0bda7985e0bbfc8d14df8befd87e2bbfa4dda6be (patch)
tree375da44b8e4cfe7df42b49369a107f5bc5dd10f6 /Dockerfile
parentMerge branch 'feature/gh_actions' (diff)
parentMerge branch 'master' into feature/gh_actions (diff)
downloadTCPD-0bda7985e0bbfc8d14df8befd87e2bbfa4dda6be.tar.gz
TCPD-0bda7985e0bbfc8d14df8befd87e2bbfa4dda6be.zip
Merge branch 'feature/gh_actions'
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index b242e8c..974e402 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,12 +8,13 @@ RUN apt-get update && \
build-essential \
python3 \
python3-dev \
- python3-pip && \
+ python3-pip \
+ python3-venv \
+ python3-wheel && \
echo "alias python='python3'" >> /root/.bash_aliases && \
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
+ cd /usr/local/bin && ln -s /usr/bin/pip3 pip
# Make bash the default shell
RUN mv /bin/sh /bin/sh.old && cp /bin/bash /bin/sh