From 9940b0366423230507ad58a518074c59b2ba06c1 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 07:34:50 +0000 Subject: [PATCH] chore: deps(dockerfile): bump image "debian" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- dockerfiles/sidekick/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index dce55abc..aee9eca8 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240211 as prepare-stage +FROM debian:bookworm-20240311 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ @@ -32,4 +32,4 @@ RUN /usr/local/bin/keygen.sh /ssh-dir # The CMD command specifies the default command to execute when the container starts. # In this case, it prints a message and lists the contents of /ssh-dir. -CMD ["sh", "-c", "echo 'Export stage is ready'; ls -l /ssh-dir/"] \ No newline at end of file +CMD ["sh", "-c", "echo 'Export stage is ready'; ls -l /ssh-dir/"]