Accepting request 1199643 from devel:BCI:Tumbleweed

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

OBS-URL: https://build.opensuse.org/request/show/1199643
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgres-16-image?expand=0&rev=21
This commit is contained in:
Ana Guerrero 2024-09-09 12:45:44 +00:00 committed by Git OBS Bridge
commit 5306f5fc8d
3 changed files with 17 additions and 5 deletions

View File

@ -16,8 +16,10 @@
#!BuildTag: opensuse/postgres:16
#!BuildTag: opensuse/postgres:16-%RELEASE%
#!BuildTag: opensuse/postgres:%%pg_version%%
#!BuildTag: opensuse/postgres:%%pg_version%%-%RELEASE%
#!BuildTag: opensuse/postgres:%%pg_minor_version%%
#!BuildTag: opensuse/postgres:%%pg_minor_version%%-%RELEASE%
#!BuildTag: opensuse/postgres:%%pg_patch_version%%
#!BuildTag: opensuse/postgres:%%pg_patch_version%%-%RELEASE%
#!BuildTag: opensuse/postgres:latest
FROM opensuse/tumbleweed:latest
@ -29,7 +31,7 @@ RUN set -euo pipefail; zypper -n in --no-recommends postgresql16-server findutil
LABEL org.opencontainers.image.authors="openSUSE (https://www.opensuse.org/)"
LABEL org.opencontainers.image.title="openSUSE Tumbleweed PostgreSQL 16"
LABEL org.opencontainers.image.description="PostgreSQL 16 container based on the openSUSE Tumbleweed Base Container Image."
LABEL org.opencontainers.image.version="16"
LABEL org.opencontainers.image.version="%%pg_patch_version%%"
LABEL org.opencontainers.image.url="https://www.opensuse.org"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="openSUSE Project"
@ -43,7 +45,7 @@ LABEL org.opensuse.release-stage="released"
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/postgres-16-image/README.md"
ENV LANG="en_US.utf8"
ENV PG_MAJOR="16"
ENV PG_VERSION="%%pg_version%%"
ENV PG_VERSION="%%pg_minor_version%%"
ENV PGDATA="/var/lib/pgsql/data"
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]

View File

@ -3,8 +3,13 @@
<service mode="buildtime" name="kiwi_metainfo_helper"/>
<service name="replace_using_package_version" mode="buildtime">
<param name="file">Dockerfile</param>
<param name="regex">%%pg_version%%</param>
<param name="regex">%%pg_minor_version%%</param>
<param name="package">postgresql16-server</param>
<param name="parse-version">minor</param>
</service>
<service name="replace_using_package_version" mode="buildtime">
<param name="file">Dockerfile</param>
<param name="regex">%%pg_patch_version%%</param>
<param name="package">postgresql16-server</param>
</service>
</services>

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Sep 9 07:25:11 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- set full version on labels and tags
-------------------------------------------------------------------
Fri Aug 16 07:07:46 UTC 2024 - Dirk Mueller <dmueller@suse.com>