Skip to content

Commit

Permalink
feat upgrate to ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDragonheart committed May 21, 2023
1 parent b1c49dd commit 124380a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,17 @@ ENV PYTHONDONTWRITEBYTECODE 1
# Prevents Python from buffering stdout and stderr
ENV PYTHONUNBUFFERED 1
# Install python and upgrade pip
RUN apt-get install -y python3-pip build-essential
RUN apt-get install -y \
python3-pip \
python3-venv \
python3-dev \
build-essential \
libssl-dev \
libffi-dev \
binutils
RUN pip3 install --upgrade pip
# Upgrade Python's packages
RUN pip3 install --upgrade wheel
# Installing Geospatial libraries
RUN apt-get install -y \
libpq-dev \
Expand Down

0 comments on commit 124380a

Please sign in to comment.