diff --git a/Dockerfile b/Dockerfile index 75ab17e..3e366b0 100755 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ USER root RUN yum -y install python3 RUN yum -y install python3-pip wget -RUN pip3 install --upgrade pip \ - && pip3 install --upgrade pipenv \ +RUN python3 -m pip install --upgrade pip \ + && python3 -m pip install --upgrade pipenv \ && pipenv install --system --deploy USER 1001