From 9f0b8852f6d79c83b92f038c395510be2ca5d4a6 Mon Sep 17 00:00:00 2001 From: "Yannick M. Dixken" Date: Fri, 15 May 2020 01:08:23 +0200 Subject: [PATCH] fixed the invokation of python for get-pip.py --- dockerfile-nogit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile-nogit b/dockerfile-nogit index b1dd378d..2a351b9d 100644 --- a/dockerfile-nogit +++ b/dockerfile-nogit @@ -16,7 +16,7 @@ RUN apt-get update && \ #Install current pip from PyPa RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ - python get-pip.py + python3 get-pip.py #Fetch additional dependencies from Python 3.x pip RUN pip install pyyaml