1
0
Dominique Leuenberger 2022-01-19 23:12:16 +00:00 committed by Git OBS Bridge
commit 4d42108015
2 changed files with 13 additions and 6 deletions

View File

@ -11,8 +11,8 @@
ARG KUBEVIRTFROM ARG KUBEVIRTFROM
FROM $KUBEVIRTFROM FROM $KUBEVIRTFROM
# TARGETARCH defined in prjconf, to handle architecture specific bits # TARGETARCH defined in prjconf, to handle architecture specific bits
# since TARGETARCH is not defined in OBS builds yet. # since TARGETARCH is not defined in OBS builds yet. Default to amd64.
ARG TARGETARCH ARG TARGETARCH=amd64
# labelprefix=%%LABELPREFIX%% # labelprefix=%%LABELPREFIX%%
PREFIXEDLABEL org.opencontainers.image.title="kubevirt virt-launcher container" PREFIXEDLABEL org.opencontainers.image.title="kubevirt virt-launcher container"
@ -39,6 +39,7 @@ RUN zypper -n install \
timezone \ timezone \
vim \ vim \
xorriso xorriso
#!ArchExclusiveLine: x86_64 #!ArchExclusiveLine: x86_64
RUN if [ "$TARGETARCH" = "amd64" ]; then \ RUN if [ "$TARGETARCH" = "amd64" ]; then \
zypper -n install qemu-x86 ; \ zypper -n install qemu-x86 ; \

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jan 19 06:48:50 UTC 2022 - Vasily Ulyanov <vasily.ulyanov@suse.com>
- Set default TARGETARCH=amd64
- Adjust indent
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 10 10:56:39 UTC 2022 - Guillaume GARDET <guillaume.gardet@opensuse.org> Mon Jan 10 10:56:39 UTC 2022 - Guillaume GARDET <guillaume.gardet@opensuse.org>