docker-runner-python-build/Dockerfile.py311
Ivan Schaller 3e220ed860
All checks were successful
build docker container / build-py38 (push) Successful in 8m42s
build docker container / build-py39 (push) Successful in 11m8s
build docker container / build-py310 (push) Successful in 9m37s
build docker container / build-py311 (push) Successful in 8m40s
set fix runner version
2023-08-14 14:41:24 +02:00

28 lines
936 B
Docker

FROM catthehacker/ubuntu:runner-22.04-20230729
ENV PYVERSION="3.11"
ENV PATH ${HOME}/.local/bin:${PATH}
RUN \
echo "*** installing python ${PYVERSION} ***" \
&& sudo apt install -y software-properties-common wget \
&& sudo add-apt-repository -y ppa:deadsnakes/ppa \
&& sudo apt update \
&& sudo apt remove -y python* \
&& sudo apt install -y "python${PYVERSION}" "python${PYVERSION}-full" "python${PYVERSION}-dev" \
&& sudo ln -s -f /usr/bin/python${PYVERSION} /usr/bin/python \
&& sudo ln -s -f /usr/bin/python${PYVERSION} /usr/bin/python3 \
&& wget -q https://bootstrap.pypa.io/get-pip.py \
&& sudo python3 get-pip.py \
&& python3 -m pip install --upgrade pip wheel setuptools
# cleanup installation
RUN \
echo "**** cleanup ****" \
&& sudo apt-get purge --auto-remove -y \
&& sudo apt-get clean \
&& sudo rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*