docker-runner-python-build/Dockerfile.py310
Ivan Schaller 7a0359fc5a
All checks were successful
build docker container / build-py38 (push) Successful in 7m38s
build docker container / build-py39 (push) Successful in 10m23s
build docker container / build-py310 (push) Successful in 9m52s
build docker container / build-py311 (push) Successful in 9m11s
fix path again
2023-08-14 15:11:24 +02:00

28 lines
941 B
Docker

FROM catthehacker/ubuntu:runner-22.04-20230729
ENV PYVERSION="3.10"
ENV PATH /home/runner/.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/*