This commit is contained in:
Ivan Schaller 2023-08-14 14:27:22 +02:00
parent 3f06e347bd
commit 6c48917168
Signed by: olofvndrhr
GPG key ID: 2A6BE07D99C8C205
4 changed files with 8 additions and 8 deletions

View file

@ -1,9 +1,9 @@
FROM catthehacker/ubuntu:runner-22.04
ENV PATH /usr/local/bin:$PATH
ENV PYVERSION="3.10"
ENV PATH ${HOME}/.local/bin:${PATH}
RUN \
echo "*** installing python ${PYVERSION} ***" \
&& sudo apt install -y software-properties-common wget \

View file

@ -1,9 +1,9 @@
FROM catthehacker/ubuntu:runner-22.04
ENV PATH /usr/local/bin:$PATH
ENV PYVERSION="3.11"
ENV PATH ${HOME}/.local/bin:${PATH}
RUN \
echo "*** installing python ${PYVERSION} ***" \
&& sudo apt install -y software-properties-common wget \

View file

@ -1,9 +1,9 @@
FROM catthehacker/ubuntu:runner-22.04
ENV PATH /usr/local/bin:$PATH
ENV PYVERSION="3.8"
ENV PATH ${HOME}/.local/bin:${PATH}
RUN \
echo "*** installing python ${PYVERSION} ***" \
&& sudo apt install -y software-properties-common wget \

View file

@ -1,9 +1,9 @@
FROM catthehacker/ubuntu:runner-22.04
ENV PATH /usr/local/bin:$PATH
ENV PYVERSION="3.9"
ENV PATH ${HOME}/.local/bin:${PATH}
RUN \
echo "*** installing python ${PYVERSION} ***" \
&& sudo apt install -y software-properties-common wget \