From 2ef5cc77520488386dede8b1c147e730d2820da3 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 27 Jan 2024 17:30:23 -0700 Subject: [PATCH] feat(dockerfile): Update base versions Update base Alpine version to 3.19 and MariaDb to 10.11.6-r0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aa3c757..c11892a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ # # build arguments -ARG ALPINE_VERSION="3.18" -ARG MARIADB_VERSION="10.11.5-r0" +ARG ALPINE_VERSION="3.19" +ARG MARIADB_VERSION="10.11.6-r0" FROM alpine:${ALPINE_VERSION} ARG ALPINE_VERSION