forked from pool/samba-client
David Mulder
7a67dc249a
* toolbox: Add openSUSE specific Containerfile * toolbox: Make Containerfile Fedora specific * client: Add openSUSE specific Containerfile * client: Make Containerfile Fedora specific * ad-server: Add openSUSE specific Containerfile * ad-server: Make Containerfile Fedora specific * server: Add openSUSE specific Containerfile * server: Make Containerfile Fedora specific * github: fix minor "spelling" mistake in mergify rules * workflows: Share samba-client image for building toolbox OBS-URL: https://build.opensuse.org/package/show/network:samba:CONTAINERS/samba-client?expand=0&rev=4
22 lines
994 B
Docker
22 lines
994 B
Docker
# 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%
|
|
|
|
# OBS doesn't allow a fully qualified image registry name for the offline build
|
|
FROM opensuse/tumbleweed
|
|
MAINTAINER David Mulder <dmulder@suse.com>
|
|
|
|
# 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%"
|
|
LABEL org.opencontainers.image.vendor="Samba in Kubernetes"
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
|
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/samba-client:%%PKG_VERSION%%-%RELEASE%"
|
|
# endlabelprefix
|
|
|
|
RUN zypper --non-interactive install --no-recommends samba-client && zypper clean
|