From 52514b4e5ec8f2b4f5e60d16c608fc56436f3a75 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 12 Sep 2026 22:23:27 -0600 Subject: [PATCH] feat(dockerfile): Update alpine to latest, use mariadb 11.4.12 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a57c195..61a44aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ # # build arguments -ARG ALPINE_VERSION="3.21" -ARG MARIADB_VERSION="11.4.5-r0" +ARG ALPINE_VERSION="3.24" +ARG MARIADB_VERSION="11.4.12-r0" FROM alpine:${ALPINE_VERSION} ARG ALPINE_VERSION