From d36976bbeac809631c89f27539f785aaf173de63 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Sun, 30 Mar 2025 16:57:12 +0800 Subject: [PATCH] chore: bump base image php version for security For both base image dependency and php version security issues, references: - https://www.php.net/releases/8_3_19.php - https://hub.docker.com/layers/library/php/8.3.17-cli-alpine3.20/images/sha256-a587eaad09c7529d1c89b4963998c7f641ad2293d41d26b133ca6b7bb575f6a2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ba3715..2d2a794 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASEIMAGE="php:8.3.17-cli-alpine3.20" +ARG BASEIMAGE="php:8.3.19-cli-alpine3.20" FROM $BASEIMAGE AS compile