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.
This commit is contained in:
Max 2026-02-13 11:39:36 +08:00
parent f2166bc847
commit baebefdb02

View file

@ -1,4 +1,4 @@
FROM docker:stable
FROM docker:latest
COPY entrypoint.sh /entrypoint.sh