2022-04-27 14:16:54 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2023-09-28 17:02:32 +02:00
|
|
|
|
|
|
|
# Copyright (c) 2023 SUSE LLC
|
|
|
|
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon.
|
|
|
|
|
|
|
|
# The content of THIS FILE IS AUTOGENERATED and should not be manually modified.
|
|
|
|
# It is maintained by the BCI team and generated by
|
|
|
|
# https://github.com/SUSE/BCI-dockerfile-generator
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
# You can contact the BCI team via https://github.com/SUSE/bci/discussions
|
|
|
|
|
|
|
|
|
2022-07-18 16:07:43 +02:00
|
|
|
#!BuildTag: opensuse/bci/python:3.10
|
|
|
|
#!BuildTag: opensuse/bci/python:3.10-%RELEASE%
|
|
|
|
#!BuildTag: opensuse/bci/python:3
|
2022-12-21 15:24:33 +01:00
|
|
|
#!BuildTag: opensuse/bci/python:3-%RELEASE%
|
2022-11-23 10:33:27 +01:00
|
|
|
|
2022-04-27 14:16:54 +02:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
2022-07-18 16:07:43 +02:00
|
|
|
MAINTAINER openSUSE (https://www.opensuse.org/)
|
2022-04-27 14:16:54 +02:00
|
|
|
|
|
|
|
# Define labels according to https://en.opensuse.org/Building_derived_containers
|
2022-07-18 16:07:43 +02:00
|
|
|
# labelprefix=org.opensuse.bci.python
|
2023-06-26 12:29:08 +02:00
|
|
|
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI Python 3.10 development"
|
|
|
|
LABEL org.opencontainers.image.description="Python 3.10 development container based on the openSUSE Tumbleweed Base Container Image."
|
2022-04-27 14:16:54 +02:00
|
|
|
LABEL org.opencontainers.image.version="3.10"
|
2022-07-18 16:07:43 +02:00
|
|
|
LABEL org.opencontainers.image.url="https://www.opensuse.org"
|
2022-04-27 14:16:54 +02:00
|
|
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
2022-07-18 16:07:43 +02:00
|
|
|
LABEL org.opencontainers.image.vendor="openSUSE Project"
|
2023-03-03 08:52:34 +01:00
|
|
|
LABEL org.opencontainers.image.source="%SOURCEURL%"
|
2022-07-18 16:07:43 +02:00
|
|
|
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/python:3.10-%RELEASE%"
|
2022-04-27 14:16:54 +02:00
|
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
2023-06-01 17:35:27 +02:00
|
|
|
LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime"
|
|
|
|
LABEL org.opensuse.release-stage="released"
|
2022-07-18 16:07:43 +02:00
|
|
|
|
2022-04-27 14:16:54 +02:00
|
|
|
# endlabelprefix
|
|
|
|
|
2023-09-25 18:18:51 +02:00
|
|
|
RUN set -euo pipefail; zypper -n in --no-recommends python310-devel python310 python310-pip curl git-core python310-wheel python310-pipx; zypper -n clean; rm -rf /var/log/*
|
2022-04-27 14:16:54 +02:00
|
|
|
ENV PYTHON_VERSION="%%py310_ver%%"
|
2023-09-25 18:18:51 +02:00
|
|
|
ENV PATH="$PATH:/root/.local/bin"
|
2022-04-27 14:16:54 +02:00
|
|
|
ENV PIP_VERSION="%%pip_ver%%"
|
|
|
|
|
2023-09-25 18:18:51 +02:00
|
|
|
RUN set -euo pipefail; install -d -m 0755 /root/.local/bin; ln -s /usr/bin/python3.10 /usr/local/bin/python3; \
|
2023-07-06 10:20:00 +02:00
|
|
|
ln -s /usr/bin/pydoc3.10 /usr/local/bin/pydoc
|