File Dockerfile of Package docker-openbao-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: openbao:latest openbao:%PKG_VERSION% openbao:%PKG_VERSION%.%RELEASE% FROM opensuse/leap:16.0 # Define labels according to https://en.opensuse.org/Building_derived_containers # labelprefix=org.opensuse.openbao LABEL org.opencontainers.image.title="Manage, store, and distribute sensitive data with OpenBao" LABEL org.opencontainers.image.description="OpenBao %PKG_VERSION% openSUSE container" LABEL org.opencontainers.image.version="%PKG_VERSION%.%RELEASE%" LABEL org.opensuse.reference="registry.opensuse.org/home/illuusio/images/images_16.0/openbao:%PKG_VERSION%.%RELEASE%" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" # endlabelprefix # Which to install files USER root # Fill the image with content and clean the cache(s) RUN zypper --quiet --non-interactive --gpg-auto-import-keys refresh && \ zypper --quiet --non-interactive --gpg-auto-import-keys --no-refresh install --no-recommends --force-resolution --allow-downgrade \ openbao && \ zypper clean -a