Skip to content

Commit

Permalink
Add Python 3.11 & 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rsyring committed Oct 10, 2023
1 parent 5fdd420 commit c34bd75
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ RUN apt install gnupg -y \
&& apt-get install -y curl git libffi-dev libreadline-dev \
python3.9 python3.9-dev libpython3.9 libpython3.9-dev python3.9-venv python3.9-distutils\
python3.10 python3.10-dev libpython3.10 libpython3.10-dev python3.10-venv python3.10-distutils \
python3.11 python3.11-dev libpython3.11 libpython3.11-dev python3.11-venv python3.11-distutils \
python3.12 python3.12-dev libpython3.12 libpython3.12-dev python3.12-venv python3.12-distutils \
&& rm -rf /var/lib/apt/lists/*

RUN curl -fSL "https://bootstrap.pypa.io/get-pip.py" -o get-pip.py \
&& python3.9 get-pip.py \
&& python3.10 get-pip.py \
&& python3.11 get-pip.py \
&& python3.12 get-pip.py \
&& rm get-pip.py

# need these libraries for lxml, PyQuery, and dbus for Keyring
Expand Down

0 comments on commit c34bd75

Please sign in to comment.