add git to image

This commit is contained in:
Vitali sharp8n 2026-09-02 19:11:54 +03:00
parent 6f10e33069
commit 96c319c2ff

View file

@ -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/*