diff --git a/Dockerfile b/Dockerfile index dee5275..e879e8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,11 +25,11 @@ LABEL com.suse.release-stage="beta" # endlabelprefix -RUN set -euo pipefail && zypper -n in --no-recommends 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 python310-pip curl git-core python310-wheel; zypper -n clean; rm -rf /var/log/* ENV PYTHON_VERSION="%%py310_ver%%" ENV PIP_VERSION="%%pip_ver%%" -RUN set -euo pipefail && ln -s /usr/bin/python3.10 /usr/local/bin/python3 && \ +RUN set -euo pipefail; ln -s /usr/bin/python3.10 /usr/local/bin/python3; \ ln -s /usr/bin/pydoc3.10 /usr/local/bin/pydoc \ No newline at end of file diff --git a/python-3.10-image.changes b/python-3.10-image.changes index 473a0f4..19cf28d 100644 --- a/python-3.10-image.changes +++ b/python-3.10-image.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue May 3 08:51:18 UTC 2022 - Dan Čermák + +- Use set -euo pipefail in every RUN command, use ; instead of && to prevent masking failures