From e87a0888424c8a986637de1e3d35831589bda56b Mon Sep 17 00:00:00 2001
From: "Yannick M. Dixken" <yannick@dixken.de>
Date: Fri, 15 May 2020 00:40:24 +0200
Subject: [PATCH] fixed the docker build process by installing pip manually

---
 dockerfile       | 2 +-
 dockerfile-nogit | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dockerfile b/dockerfile
index 0ee1ea43..6cdd9ba4 100644
--- a/dockerfile
+++ b/dockerfile
@@ -17,7 +17,7 @@ RUN apt-get update && \
 	apt-get install -y tar wget dfu-util cmake python curl && \
 	apt-get -qy autoremove
 
-#Install pip from PyPa
+#Install current pip from PyPa
 RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
 	python get-pip.py
 
diff --git a/dockerfile-nogit b/dockerfile-nogit
index 1de8f6f5..b1dd378d 100644
--- a/dockerfile-nogit
+++ b/dockerfile-nogit
@@ -14,10 +14,11 @@ RUN apt-get update && \
 	apt-get install -y git tar wget dfu-util cmake python3 ccache curl && \
 	apt-get -qy autoremove
 
-#Install pip from PyPa
+#Install current pip from PyPa
 RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
 	python get-pip.py
 
+#Fetch additional dependencies from Python 3.x pip
 RUN pip install pyyaml
 
 # Grab the GNU ARM toolchain from arm.com
-- 
GitLab