feat(version): Update Alpine, mariadb version

Update Alpine to 3.21, mariadb to 11.4.4-r1
This commit is contained in:
Asif Bacchus 2025-01-24 01:34:59 -07:00
parent f0efa2b9fc
commit 5b5109a0b8
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RiderProjectSettingsUpdater">
<option name="singleClickDiffPreview" value="1" />
<option name="vcsConfiguration" value="3" />
</component>
</project>

View File

@ -3,8 +3,8 @@
#
# build arguments
ARG ALPINE_VERSION="3.20"
ARG MARIADB_VERSION="10.11.8-r0"
ARG ALPINE_VERSION="3.21"
ARG MARIADB_VERSION="11.4.4-r1"
FROM alpine:${ALPINE_VERSION}
ARG ALPINE_VERSION
@ -39,7 +39,7 @@ VOLUME ["/var/lib/mysql"]
# basic healthcheck (service only)
HEALTHCHECK \
--interval=30s \
--timeout=10s \
--timeout=5s \
--start-period=5s \
--retries=3 \
CMD mysqladmin ping --silent