db5aa14325
- Enable build only on aarch64 and x86_64 OBS-URL: https://build.opensuse.org/request/show/936531 OBS-URL: https://build.opensuse.org/package/show/Virtualization/cdi-uploadproxy-container?expand=0&rev=11
30 lines
1.2 KiB
Docker
30 lines
1.2 KiB
Docker
# Defines the tag for OBS and build script builds:
|
|
#!BuildTag: %%TAGPREFIX%%/cdi-uploadproxy:%%PKG_VERSION%%
|
|
#!BuildTag: %%TAGPREFIX%%/cdi-uploadproxy:%%PKG_VERSION%%.%RELEASE%
|
|
#!BuildTag: %%TAGPREFIX%%/cdi-uploadproxy:%%PKG_VERSION%%-%%PKG_RELEASE%%
|
|
|
|
#!ExclusiveArch: x86_64 aarch64
|
|
|
|
# cdi-uploadproxy container image
|
|
# KUBEVIRTFROM defined in prjconf, e.g.
|
|
# BuildFlags: dockerarg:KUBEVIRTFROM=opensuse/tumbleweed
|
|
ARG KUBEVIRTFROM
|
|
FROM $KUBEVIRTFROM
|
|
|
|
# labelprefix=%%LABELPREFIX%%
|
|
PREFIXEDLABEL org.opencontainers.image.title="CDI uploadproxy container"
|
|
PREFIXEDLABEL org.opencontainers.image.description="Upload proxy for the data fetching service for VM container images"
|
|
PREFIXEDLABEL org.opencontainers.image.created="%BUILDTIME%"
|
|
PREFIXEDLABEL org.opencontainers.image.version="%%PKG_VERSION%%.%RELEASE%"
|
|
PREFIXEDLABEL org.openbuildservice.disturl="%DISTURL%"
|
|
PREFIXEDLABEL org.opensuse.reference="%%REGISTRY%%/%%TAGPREFIX%%/cdi-uploadproxy:%%PKG_VERSION%%.%RELEASE%"
|
|
|
|
RUN zypper -n install \
|
|
containerized-data-importer-uploadproxy \
|
|
shadow && \
|
|
zypper clean -a && \
|
|
useradd -u 1001 --create-home -s /bin/bash cdi-uploadproxy
|
|
WORKDIR /home/cdi-uploadproxy
|
|
USER 1001
|
|
ENTRYPOINT [ "/usr/bin/virt-cdi-uploadproxy", "-alsologtostderr" ]
|