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