[info=181360fcab140f55153e2c325b76afb4]

OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/mariadb-client-image?expand=0&rev=62
This commit is contained in:
2024-06-05 12:58:01 +00:00
committed by Git OBS Bridge
parent ce6aa5ed02
commit 368303d190
2 changed files with 7 additions and 2 deletions

View File

@@ -41,5 +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" ]]
# sanity check that the version from the tag is equal to the version of mariadb-client that we expect
RUN set -euo pipefail; [ "$(rpm -q --qf '%{version}' mariadb-client | cut -d '.' -f -2)" = "11.2" ]

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Jun 5 12:47:13 UTC 2024 - Dan Čermák <dcermak@suse.com>
- Avoid bashism version check
-------------------------------------------------------------------
Tue Jun 4 12:35:15 UTC 2024 - Alexandre Vicenzi <alexandre.vicenzi@suse.com>