aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-05-19 10:30:08 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-05-19 10:30:08 +0100
commit692632b8dd3b393ac0cac297ef5541a3be65df72 (patch)
tree2aae7f3716c2c4f10629780d7b4706a847ef385a
parentAdd a paragraph with a high-level overview of the repo (diff)
downloadTCPDBench-692632b8dd3b393ac0cac297ef5541a3be65df72.tar.gz
TCPDBench-692632b8dd3b393ac0cac297ef5541a3be65df72.zip
Don't update pip in Dockerfile
Ubuntu wants to manage it themselves, and disables upgrading pip(?)
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d5e3e143..9fc71092 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,7 +25,7 @@ RUN apt-get install -y --no-install-recommends \
python3-dev \
python3-tk \
python3-pip && \
- pip3 install --no-cache-dir --upgrade pip setuptools && \
+ pip3 install --no-cache-dir --upgrade setuptools && \
echo "alias python='python3'" >> /root/.bash_aliases && \
echo "alias pip='pip3'" >> /root/.bash_aliases && \
cd /usr/local/bin && ln -s /usr/bin/python3 python && \