From 53dc0882c32067461a80ce0b9fd275dbc290c5fd Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 25 Sep 2018 04:29:04 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 794cfe11..6acd754f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,9 @@ ENV LANG C.UTF-8 RUN apt update && apt upgrade -y && apt install python3.7-dev -y RUN curl --silent https://bootstrap.pypa.io/get-pip.py | python3.7 +# Backwards compatility. +RUN rm -fr /usr/bin/python3 & ln /usr/bin/python3.7 /usr/bin/python3 + RUN pip3 install pipenv # -- Install Application into container: