File Dockerfile of Package iamb-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/iamb:latest opensuse/iamb:%PKG_VERSION% opensuse/iamb:%PKG_VERSION%.%RELEASE% FROM opensuse/tumbleweed:latest MAINTAINER Matěj Cepl <mcepl@cepl.eu> # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.example LABEL org.opencontainers.image.title="opensuse/iamb" LABEL org.opencontainers.image.description="iamb distrobox container" LABEL org.opencontainers.image.version="%PKG_VERSION%.%RELEASE%" LABEL org.opensuse.reference="registry.opensuse.org/home/mcepl/moldavite/containers/opensuse/iamb:%PKG_VERSION%.%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" # endlabelprefix # Set environmental variables ENV TERM=xterm-256color # Fill the image with content and clean the cache(s) RUN zypper --non-interactive refresh RUN zypper --non-interactive install iamb RUN zypper clean --all ENTRYPOINT /usr/bin/iamb