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=