From 7c2eaa77a970ad2347bdc0676af6ca3e9a16d177 Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Mon, 15 Feb 2021 13:53:06 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 725a7be..b2c91b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,9 @@ RUN \ RUN \ set -eux && \ python3 --version && \ + curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ + python3 get-pip.py && \ + rm get-pip.py && \ python3 -m pip install -U pip && \ pip3 --version && \ pip3 install --upgrade pip setuptools wheel && \