From a3b395e8e8a304fa1967a658db526388673db2c1 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Sun, 24 Nov 2024 10:08:48 +0800 Subject: [PATCH] ci: updated base-image --- docker/base-image/install/deps/deps.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docker/base-image/install/deps/deps.sh b/docker/base-image/install/deps/deps.sh index 1b26c307..1e2dcfbd 100644 --- a/docker/base-image/install/deps/deps.sh +++ b/docker/base-image/install/deps/deps.sh @@ -11,14 +11,14 @@ apt-get update # Install common dependencies with detailed explanations # -y flag means "yes" to all prompts (non-interactive installation) apt-get install -y \ - curl \ # Modern HTTP client - wget \ # Another download utility - git \ # Distributed version control system - net-tools \ # Traditional networking tools - iputils-ping \ # Tools for testing network connectivity - ntp \ # Network Time Protocol daemon for time sync - ntpdate \ # Client for one-time NTP sync - nginx \ # High-performance HTTP server and reverse proxy - unzip \ # Extract .zip archives - gnupg2 \ # GNU Privacy Guard for encryption and signing - libc6 # GNU C Library - essential for running C programs \ No newline at end of file + curl \ + wget \ + git \ + net-tools \ + iputils-ping \ + ntp \ + ntpdate \ + nginx \ + unzip \ + gnupg2 \ + libc6 \ No newline at end of file