Adding nessie to factory. This aims to test the theory of conflict if there's same package and branch name, as was the case in #243 Authored-by: George <george_agriogiannis@yahoo.com> Reviewed-on: #244 Reviewed-by: Nicolas Belouin <nbelouin@noreply.src.opensuse.org>
32 lines
1.3 KiB
Docker
32 lines
1.3 KiB
Docker
# SPDX-License-Identifier: Apache-2.0
|
|
#!BuildTag: %%IMG_PREFIX%%nessie:%%nessie_version%%
|
|
#!BuildTag: %%IMG_PREFIX%%nessie:%%nessie_version%%-%RELEASE%
|
|
|
|
ARG SLE_VERSION
|
|
FROM registry.suse.com/bci/bci-base:$SLE_VERSION
|
|
|
|
# labelprefix=com.suse.application.nessie
|
|
LABEL org.opencontainers.image.title="nessie"
|
|
LABEL org.opencontainers.image.description="Nessie diagnostic tool for SUSE Kubernetes environments"
|
|
LABEL org.opencontainers.image.version="%%nessie_version%%"
|
|
LABEL org.opencontainers.image.authors="George Agriogiannis <george.agriogiannis2@suse.com>"
|
|
LABEL org.opencontainers.image.url="https://github.com/suse-edge/support-tools/tree/main/nessie"
|
|
LABEL org.opencontainers.image.vendor="SUSE LLC"
|
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
|
LABEL org.opensuse.reference="%%IMG_REPO%%/%%IMG_PREFIX%%nessie:%%nessie_version%%-%RELEASE%"
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
|
LABEL com.suse.supportlevel="%%SUPPORT_LEVEL%%"
|
|
LABEL com.suse.eula="SUSE Combined EULA February 2024"
|
|
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle"
|
|
LABEL com.suse.image-type="application"
|
|
LABEL com.suse.release-stage="released"
|
|
# endlabelprefix
|
|
|
|
RUN zypper --non-interactive refresh && \
|
|
zypper --non-interactive install --no-recommends nessie && \
|
|
zypper clean
|
|
|
|
WORKDIR /tmp
|
|
|
|
ENTRYPOINT ["/usr/bin/nessie"]
|