From 9d48de884515cb30bdb5db8a4eebf8d3a0c46849 Mon Sep 17 00:00:00 2001 From: Afireal Date: Fri, 13 Mar 2026 10:04:18 +0500 Subject: [PATCH] git --- Dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 89d3378..6da43d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,12 @@ FROM ubuntu:24.04 ENV DEBIAN_FRONTEND=noninteractive +# среда +RUN apt-get update && apt-get install -y --no-install-recommends \ + ca-certificates \ + git \ + && rm -rf /var/lib/apt/lists/* + # nodejs RUN apt-get update && apt-get install -y --no-install-recommends \ nodejs \ @@ -14,7 +20,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* # check -RUN dotnet --version && \ +RUN git --version && \ + dotnet --version && \ node --version ENV DEBIAN_FRONTEND=