[info=b4804284c18f4212497f0aaee0deb715]

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

View File

@ -43,8 +43,8 @@ RUN set -euo pipefail; zypper -n in --no-recommends mariadb mariadb-tools gawk t
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["mariadbd"]
EXPOSE 3306
# 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" ]
RUN set -euo pipefail; mkdir /docker-entrypoint-initdb.d

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>