From f3a96c7cd3dc807a9c7e9b0d5bbfe8a7952b279f Mon Sep 17 00:00:00 2001
From: Stefano Alberto Russo <stefano.russo@gmail.com>
Date: Thu, 24 Mar 2022 18:02:06 +0100
Subject: [PATCH] Fixed Python3.6 <-> pip incompatibility.

---
 services/webapp/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/webapp/Dockerfile b/services/webapp/Dockerfile
index 3bdd276..a712c5d 100644
--- a/services/webapp/Dockerfile
+++ b/services/webapp/Dockerfile
@@ -14,7 +14,7 @@ RUN apt-get update
 RUN apt-get install curl -y
 
 # Download get-pip script
-RUN curl -O https://bootstrap.pypa.io/get-pip.py
+RUN curl -O https://bootstrap.pypa.io/pip/3.6/get-pip.py
 
 # Install Python3 and Pip3 (python3-distutils required for pip3)
 RUN apt-get install python3 python3-distutils -y 
-- 
GitLab