[info=05a4d7d3f8760796771611c8b7babff2]

OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/python-3.10-image?expand=0&rev=87
This commit is contained in:
Dan Čermák 2023-09-25 16:18:51 +00:00 committed by Git OBS Bridge
parent 25e7a75ffb
commit f3637300a8
2 changed files with 8 additions and 2 deletions

View File

@ -24,9 +24,10 @@ LABEL org.opensuse.release-stage="released"
# endlabelprefix
RUN set -euo pipefail; zypper -n in --no-recommends python310-devel python310 python310-pip curl git-core python310-wheel; zypper -n clean; rm -rf /var/log/*
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/*
ENV PYTHON_VERSION="%%py310_ver%%"
ENV PATH="$PATH:/root/.local/bin"
ENV PIP_VERSION="%%pip_ver%%"
RUN set -euo pipefail; ln -s /usr/bin/python3.10 /usr/local/bin/python3; \
RUN set -euo pipefail; install -d -m 0755 /root/.local/bin; ln -s /usr/bin/python3.10 /usr/local/bin/python3; \
ln -s /usr/bin/pydoc3.10 /usr/local/bin/pydoc

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Sep 25 11:06:18 UTC 2023 - Dirk Mueller <dmueller@suse.com>
- Add /root/.local/bin to PATH, jsc#PED-5573
-------------------------------------------------------------------
Thu Jul 6 08:16:35 UTC 2023 - Dirk Mueller <dmueller@suse.com>