diff --git a/Dockerfile b/Dockerfile index eb5daeb..6654084 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ LABEL com.suse.release-stage="beta" # endlabelprefix LABEL usage="This container should only be used to build containers for daemons. Add your packages and enable services using systemctl." -RUN set -euo pipefail && zypper -n in --no-recommends systemd gzip && zypper -n clean && rm -rf /var/log/* +RUN set -euo pipefail; zypper -n in --no-recommends systemd gzip; zypper -n clean; rm -rf /var/log/* diff --git a/init-image.changes b/init-image.changes index 473a0f4..dd190ed 100644 --- a/init-image.changes +++ b/init-image.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue May 3 09:09:51 UTC 2022 - Dan Čermák + +- Use set -euo pipefail in every RUN command, use ; instead of && to prevent masking failures