summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2021-07-08 15:57:04 +0200
committerAndrew Cooper <andrew.cooper3@citrix.com>2021-07-09 13:28:52 +0100
commitea7f91ded56e6de1fbf79b8a7c0985a5f5de5740 (patch)
tree56351fed8e22b2522f25465c1103043eda34797e
parent6de3e5fce5e2a3c5f438e8e214168dd3a474cbbf (diff)
automation: use zypper dup in tumbleweed dockerfile
The 'dup' command aligns the installed packages with the packages found in the enabled repositories, taking the repository priorities into account. Using this command is generally a safe thing to do. In the context of Tumbleweed using 'dup' is essential, because package versions might be downgraded, and package names occasionally change. Only 'dup' will do the correct thing in such cases. Signed-off-by: Olaf Hering <olaf@aepfle.de> Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
-rw-r--r--automation/build/suse/opensuse-tumbleweed.dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/automation/build/suse/opensuse-tumbleweed.dockerfile b/automation/build/suse/opensuse-tumbleweed.dockerfile
index a33ab0d870..3965e7f9cd 100644
--- a/automation/build/suse/opensuse-tumbleweed.dockerfile
+++ b/automation/build/suse/opensuse-tumbleweed.dockerfile
@@ -7,7 +7,7 @@ ENV USER root
RUN mkdir /build
WORKDIR /build
-RUN zypper ref && zypper up -y --no-recommends
+RUN zypper ref && zypper dup -y --no-recommends
RUN zypper install -y --no-recommends \
acpica \
bc \