Skip to content

Commit

Permalink
Upgrade to Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mureytasroc committed Nov 5, 2023
1 parent fb3fa1b commit 726f4fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 726f4fe

Please sign in to comment.