Accepting request 1177751 from devel:BCI:Tumbleweed

🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1177751
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mariadb-client-image?expand=0&rev=6
This commit is contained in:
Ana Guerrero 2024-05-30 13:34:11 +00:00 committed by Git OBS Bridge
commit ffbaafdc8f
3 changed files with 11 additions and 10 deletions

View File

@ -14,8 +14,8 @@
# You can contact the BCI team via https://github.com/SUSE/bci/discussions
#!BuildTag: opensuse/mariadb-client:%%mariadb_version%%
#!BuildTag: opensuse/mariadb-client:%%mariadb_version%%-%RELEASE%
#!BuildTag: opensuse/mariadb-client:11.2
#!BuildTag: opensuse/mariadb-client:11.2-%RELEASE%
#!BuildTag: opensuse/mariadb-client:latest
FROM opensuse/tumbleweed:latest
@ -26,13 +26,13 @@ MAINTAINER openSUSE (https://www.opensuse.org/)
# labelprefix=org.opensuse.application.mariadb-client
LABEL org.opencontainers.image.title="openSUSE Tumbleweed MariaDB Client"
LABEL org.opencontainers.image.description="MariaDB Client container based on the openSUSE Tumbleweed Base Container Image."
LABEL org.opencontainers.image.version="%%mariadb_version%%"
LABEL org.opencontainers.image.version="11.2"
LABEL org.opencontainers.image.url="https://www.opensuse.org"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="openSUSE Project"
LABEL org.opencontainers.image.source="%SOURCEURL%"
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/mariadb-client-image/README.md"
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/mariadb-client:%%mariadb_version%%-%RELEASE%"
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/mariadb-client:11.2-%RELEASE%"
LABEL org.openbuildservice.disturl="%DISTURL%"
LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime"
LABEL org.opensuse.release-stage="released"
@ -41,3 +41,5 @@ LABEL org.opensuse.release-stage="released"
RUN set -euo pipefail; zypper -n in --no-recommends mariadb-client; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
CMD ["mariadb"]
# sanity check that the version from the tag is equal to the version that we expect
RUN set -euo pipefail; [[ $(rpm -q --qf "%{version}" mariadb-client | cut -d "." -f -2) = "11.2" ]]

View File

@ -1,10 +1,4 @@
<services>
<service mode="buildtime" name="docker_label_helper"/>
<service mode="buildtime" name="kiwi_metainfo_helper"/>
<service name="replace_using_package_version" mode="buildtime">
<param name="file">Dockerfile</param>
<param name="regex">%%mariadb_version%%</param>
<param name="package">mariadb-client</param>
<param name="parse-version">minor</param>
</service>
</services>

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu May 30 08:24:02 UTC 2024 - Dan Čermák <dcermak@suse.com>
- Fix version string in reference
-------------------------------------------------------------------
Tue May 7 19:07:24 UTC 2024 - Dirk Mueller <dmueller@suse.com>