From 25e203325329e73521cd0c7585b1f90631743ddc Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Thu, 22 Feb 2018 21:48:51 +0000 Subject: [PATCH] Update runner-main to use python3 --- runner/main/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runner/main/Dockerfile b/runner/main/Dockerfile index 77f91ce..89b7d49 100644 --- a/runner/main/Dockerfile +++ b/runner/main/Dockerfile @@ -1,7 +1,7 @@ FROM gitlab.wojciechkozlowski.eu:8443/wojtek/loki/runner-base RUN apt install -y build-essential \ - python \ - python-pip + python3 \ + python3-pip -RUN pip install pycodestyle coverage mock +RUN pip3 install pycodestyle coverage