diff --git a/Dockerfile b/Dockerfile index 6661b37..e1ca98f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,9 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y python3-pip python3-dev \ && cd /usr/local/bin \ - && ln -s /usr/bin/python3 python \ + && ln -s /usr/bin/python3 /usr/bin/python \ + && ln -s /usr/bin/pip3 /usr/bin/pip \ && pip3 --no-cache-dir install --upgrade pip \ && rm -rf /var/lib/apt/lists/* -ENTRYPOINT ["python3"] +ENTRYPOINT ["python"]