All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] automation: use zypper dup in tumbleweed dockerfile
@ 2021-07-08 13:57 Olaf Hering
  2021-07-08 14:30 ` Andrew Cooper
  0 siblings, 1 reply; 5+ messages in thread
From: Olaf Hering @ 2021-07-08 13:57 UTC (permalink / raw)
  To: xen-devel; +Cc: Olaf Hering, Doug Goldstein

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>
---
 automation/build/suse/opensuse-tumbleweed.dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 \


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-07-08 15:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-08 13:57 [PATCH v1] automation: use zypper dup in tumbleweed dockerfile Olaf Hering
2021-07-08 14:30 ` Andrew Cooper
2021-07-08 14:33   ` Olaf Hering
2021-07-08 14:44     ` Andrew Cooper
2021-07-08 15:00       ` Olaf Hering

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.