diff --git a/backend/Dockerfile b/backend/Dockerfile index 00b3204..056ac28 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -9,9 +9,9 @@ WORKDIR /app/ # Install dependencies RUN apt-get update \ - && apt-get install --no-install-recommends -y python3.7-dev python3-distutils libpq-dev gcc \ - && wget -qO get-pip.py "https://github.com/pypa/get-pip/raw/0c72a3b4ece313faccb446a96c84770ccedc5ec5/get-pip.py" \ - && python3.7 get-pip.py \ + && apt-get install --no-install-recommends -y python3.10-dev python3-distutils libpq-dev gcc \ + && wget -qO get-pip.py "https://raw.githubusercontent.com/pypa/get-pip/4cfa4081d27285bda1220a62a5ebf5b4bd749cdb/public/get-pip.py" \ + && python3.10 get-pip.py \ --disable-pip-version-check \ --no-cache-dir \ && pip3 install pipenv \