From 759ce7444ea01b3c57d62022f01dccbf7f1ee363 Mon Sep 17 00:00:00 2001 From: ZhenYi <434836402@qq.com> Date: Thu, 16 Apr 2026 21:25:55 +0800 Subject: [PATCH] =?UTF-8?q?build(docker):=20=E5=9C=A8=E5=A4=9A=E4=B8=AA=20?= =?UTF-8?q?Docker=20=E9=95=9C=E5=83=8F=E4=B8=AD=E6=B7=BB=E5=8A=A0=20Git=20?= =?UTF-8?q?=E5=AE=89=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/app.Dockerfile | 2 +- docker/git-hook.Dockerfile | 2 +- docker/gitserver.Dockerfile | 2 +- docker/operator.Dockerfile | 2 +- docker/static.Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/app.Dockerfile b/docker/app.Dockerfile index d130fa3..9d3f87a 100644 --- a/docker/app.Dockerfile +++ b/docker/app.Dockerfile @@ -2,7 +2,7 @@ FROM debian:bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates libssl3 \ + ca-certificates libssl3 git \ && rm -rf /var/lib/apt/lists/* WORKDIR /app diff --git a/docker/git-hook.Dockerfile b/docker/git-hook.Dockerfile index ddd2d23..c6e1448 100644 --- a/docker/git-hook.Dockerfile +++ b/docker/git-hook.Dockerfile @@ -2,7 +2,7 @@ FROM debian:bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates libssl3 openssh-client procps \ + ca-certificates libssl3 openssh-client procps git \ && rm -rf /var/lib/apt/lists/* WORKDIR /app diff --git a/docker/gitserver.Dockerfile b/docker/gitserver.Dockerfile index fa6539d..fcd32e7 100644 --- a/docker/gitserver.Dockerfile +++ b/docker/gitserver.Dockerfile @@ -2,7 +2,7 @@ FROM debian:bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates libssl3 openssh-server \ + ca-certificates libssl3 openssh-server git \ && rm -rf /var/lib/apt/lists/* RUN mkdir -p /run/sshd && \ diff --git a/docker/operator.Dockerfile b/docker/operator.Dockerfile index fc5fecc..49f3e03 100644 --- a/docker/operator.Dockerfile +++ b/docker/operator.Dockerfile @@ -2,7 +2,7 @@ FROM debian:bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates \ + ca-certificates git \ && rm -rf /var/lib/apt/lists/* WORKDIR /app diff --git a/docker/static.Dockerfile b/docker/static.Dockerfile index 7fe5df2..37840db 100644 --- a/docker/static.Dockerfile +++ b/docker/static.Dockerfile @@ -2,7 +2,7 @@ FROM debian:bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends \ - ca-certificates \ + ca-certificates git \ && rm -rf /var/lib/apt/lists/* WORKDIR /app