/{docker,go,integration-tests}: install git, remote .git suffix on clone in server

This commit is contained in:
coffeegoddd☕️✨
2026-02-12 13:37:13 -08:00
parent 661248a600
commit 7fe6eb7517
4 changed files with 66 additions and 1 deletions
+1
View File
@@ -6,6 +6,7 @@ ARG DOLT_VERSION
RUN apt update -y && \
apt install -y \
curl \
git \
tini \
ca-certificates && \
apt clean && \
+1 -1
View File
@@ -4,7 +4,7 @@ FROM debian:bookworm-slim AS base
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
curl tini ca-certificates && \
curl git tini ca-certificates && \
rm -rf /var/lib/apt/lists/*