File Dockerfile of Package infra
# Define the names/tags of the container #!BuildTag: infra:tumbleweed FROM opensuse/tumbleweed # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.qac.infra LABEL maintainer="QAC" LABEL description="Container image for the qac/infra project" LABEL org.opencontainers.image.title="qac/infra" LABEL org.opencontainers.image.description="Container image for the qac/infra project" LABEL org.opensuse.reference="registry.opensuse.org/qac/infra:%PKG_VERSION%.%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" # endlabelprefix ## Install required tools and clear cache RUN zypper in -y opentofu terragrunt diff && zypper clean -a && rm -rf /var/cache/*