docker-runner-python-build/Dockerfile.py310
Ivan Schaller 96e80bd122
All checks were successful
build docker container / build-py38 (push) Successful in 8m47s
build docker container / build-py310 (push) Successful in 8m9s
build docker container / build-py39 (push) Successful in 11m55s
build docker container / build-py311 (push) Successful in 12m51s
update dockerfiles
2023-08-14 11:10:19 +02:00

28 lines
921 B
Docker

FROM catthehacker/ubuntu:runner-22.04
ENV PATH /usr/local/bin:$PATH
ENV PYVERSION="3.10"
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/*