2023-01-31 15:54:34 +01:00
|
|
|
# Defines the tag for OBS and build script builds:
|
|
|
|
#!BuildTag: opensuse/samba-client:latest
|
|
|
|
#!BuildTag: opensuse/samba-client:%%MINOR%%
|
|
|
|
#!BuildTag: opensuse/samba-client:%%PKG_VERSION%%
|
|
|
|
#!BuildTag: opensuse/samba-client:%%PKG_VERSION%%-%RELEASE%
|
|
|
|
|
2023-02-10 18:24:14 +01:00
|
|
|
# OBS doesn't allow a fully qualified image registry name for the offline build
|
2023-01-31 15:54:34 +01:00
|
|
|
FROM opensuse/tumbleweed
|
2023-02-10 18:24:14 +01:00
|
|
|
MAINTAINER David Mulder <dmulder@suse.com>
|
2023-01-31 15:54:34 +01:00
|
|
|
|
|
|
|
# labelprefix=org.opensuse.samba-client
|
|
|
|
LABEL org.opencontainers.image.title="Samba Client container"
|
|
|
|
LABEL org.opencontainers.image.description="Samba Client container"
|
|
|
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
|
|
|
LABEL org.opencontainers.image.version="%%PKG_VERSION%%-%RELEASE%"
|
2023-02-10 18:24:14 +01:00
|
|
|
LABEL org.opencontainers.image.vendor="Samba in Kubernetes"
|
2023-01-31 15:54:34 +01:00
|
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
|
|
|
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/samba-client:%%PKG_VERSION%%-%RELEASE%"
|
|
|
|
# endlabelprefix
|
|
|
|
|
2023-02-10 18:24:14 +01:00
|
|
|
RUN zypper --non-interactive install --no-recommends samba-client && zypper clean
|