From 16b690b6d198afc0b5bfd9aa1c96b008cb997921 Mon Sep 17 00:00:00 2001
From: Stefano Alberto Russo <stefano.russo@gmail.com>
Date: Tue, 22 Mar 2022 13:14:45 +0100
Subject: [PATCH] Fixed Python3.6 <-> pip incompatibility.

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

diff --git a/services/api-gateway/Dockerfile b/services/api-gateway/Dockerfile
index b2a1851..9831186 100644
--- a/services/api-gateway/Dockerfile
+++ b/services/api-gateway/Dockerfile
@@ -18,7 +18,7 @@ RUN apt-get install -y nano telnet unzip wget openssh-server sudo curl
 RUN apt-get install -y build-essential python-dev git-core
 
 # 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