From b268dd07aa2b68603296d462eef9c18615a448a2 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 25 Apr 2021 01:04:04 +0300
Subject: [PATCH] Upgrade pip before installing other packages.

Cryptography now requires Rust. Use the newer pip to install the
pre-built wheel.
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 8cd7f37..f11fb0b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,9 +6,9 @@ RUN apt-get update && \
         python3-pip \
         python3-venv \
     && \
+    python3 -m pip install --progress-bar=off --no-cache-dir --upgrade pip && \
     python3 -m pip install --progress-bar=off --no-cache-dir --upgrade \
         docutils \
-        pip \
         pipenv \
         poetry \
         pygments \
-- 
GitLab