From 5b5109a0b8b59a845a84dbe4fc7502149e6217dc Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 24 Jan 2025 01:34:59 -0700 Subject: [PATCH] feat(version): Update Alpine, mariadb version Update Alpine to 3.21, mariadb to 11.4.4-r1 --- .idea/projectSettingsUpdater.xml | 1 + Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.idea/projectSettingsUpdater.xml b/.idea/projectSettingsUpdater.xml index 86cc6c6..64af657 100644 --- a/.idea/projectSettingsUpdater.xml +++ b/.idea/projectSettingsUpdater.xml @@ -1,6 +1,7 @@ + \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index cb3eae8..48c758e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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