File Dockerfile of Package kirk-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/kirk:latest opensuse/kirk:%PKG_VERSION% opensuse/kirk:%PKG_VERSION%.%RELEASE% FROM opensuse/tumbleweed # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.kirk LABEL org.opencontainers.image.title="Kirk container" LABEL org.opencontainers.image.description="This contains kirk %PKG_VERSION%" LABEL org.opencontainers.image.version="%PKG_VERSION%.%RELEASE%" LABEL org.opensuse.reference="registry.opensuse.org/opensuse/kirk:%PKG_VERSION%.%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" # endlabelprefix RUN zypper ar https://download.opensuse.org/repositories/benchmark:/ltp:/devel/openSUSE_Tumbleweed/ devel-repo # Fill the image with content and clean the cache(s) RUN zypper --non-interactive in python3-msgpack python3-asyncssh kirk && zypper clean -a ##ENTRYPOINT [ "/usr/bin/kirk" ]