From baebefdb02bac50d0823acae8b01f2ca810cf56a Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 13 Feb 2026 11:39:36 +0800 Subject: [PATCH] Update Dockerfile to use the latest Docker image - Change the base image in the Dockerfile from `docker:stable` to `docker:latest` to ensure the use of the most recent features and security updates. --- .github/actions/setup-db/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-db/Dockerfile b/.github/actions/setup-db/Dockerfile index 227218cb..dccbbaa9 100644 --- a/.github/actions/setup-db/Dockerfile +++ b/.github/actions/setup-db/Dockerfile @@ -1,4 +1,4 @@ -FROM docker:stable +FROM docker:latest COPY entrypoint.sh /entrypoint.sh