From 96c319c2ff0a4eb30f7a67f2a9f55026c2273248 Mon Sep 17 00:00:00 2001 From: Vitali sharp8n Date: Wed, 2 Sep 2026 19:11:54 +0300 Subject: [PATCH] add git to image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 569e3f8..02a5596 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ COPY --from=build /app . # Worker sandbox runtimes: python3 + node + esbuild. The api image does not # strictly need them, but keeping them makes the image a true drop-in worker. RUN apt-get update \ - && apt-get install -y --no-install-recommends python3 nodejs npm ca-certificates \ + && apt-get install -y --no-install-recommends python3 nodejs npm ca-certificates git \ && npm install -g esbuild \ && rm -rf /var/lib/apt/lists/*