From 1be0a8907bdfb1e7ff689124f2bfebfe4edbdc63 Mon Sep 17 00:00:00 2001 From: nakamura Date: Sun, 23 Aug 2020 12:46:28 +0900 Subject: [PATCH] Fix error in pip install kubernetes --- step12/liberator/container/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/step12/liberator/container/Dockerfile b/step12/liberator/container/Dockerfile index 431d71e..f361a5a 100644 --- a/step12/liberator/container/Dockerfile +++ b/step12/liberator/container/Dockerfile @@ -3,6 +3,7 @@ RUN apt-get update # && apt-get install -y curl apt-transport-https # pyhon RUN apt-get install -y python python-pip +RUN pip install --upgrade pip RUN pip install kubernetes COPY main.py /main.py