1
0
cdi-uploadproxy-container/Dockerfile
2021-03-12 14:55:48 +00:00

24 lines
1.0 KiB
Docker

# Defines the tag for OBS and build script builds:
#!BuildTag: opensuse/tumbleweed/cdi-uploadproxy:%%PKG_VERSION%%
#!BuildTag: opensuse/tumbleweed/cdi-uploadproxy:%%PKG_VERSION%%.%RELEASE%
# cdi-uploadproxy container image
FROM opensuse/tumbleweed
# labelprefix=org.opensuse.kubevirt
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="opensuse/tumbleweed/cdi-uploadproxy:%%PKG_VERSION%%.%RELEASE%"
RUN zypper update -y && \
zypper install -y \
containerized-data-importer-uploadproxy \
shadow && \
useradd -u 1001 --create-home -s /bin/bash cdi-uploadproxy
WORKDIR /home/cdi-uploadproxy
USER 1001
ENTRYPOINT [ "/usr/bin/virt-cdi-uploadproxy", "-alsologtostderr" ]