File Dockerfile of Package smlm-smdba-container
# Specify the license of the container build description (see also the LICENSE file) # SPDX-License-Identifier: MIT # Define the names/tags of the container #!BuildTag: opensuse/smdba:latest opensuse/smdba:%PKG_VERSION% opensuse/smdba:%PKG_VERSION%.%RELEASE% FROM opensuse/tumbleweed # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.smdba LABEL org.opencontainers.image.title="smdba" LABEL org.opencontainers.image.description="This contains nano smdba" LABEL org.opencontainers.image.version="%PKG_VERSION%.%RELEASE%" LABEL org.opensuse.reference="registry.opensuse.org/opensuse/smdba:%PKG_VERSION%.%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" # endlabelprefix # Fill the image with content and clean the cache(s) RUN zypper ar https://download.opensuse.org/repositories/home:/bjin01/openSUSE_Tumbleweed bjin01_repo RUN zypper --gpg-auto-import-keys refresh RUN zypper --non-interactive in nano smdba && zypper clean -a RUN zypper --non-interactive rr bjin01_repo