diff --git a/Dockerfile b/Dockerfile index 1ea7c01..3334c00 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 \ @@ -13,7 +19,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* # check -RUN docker --version && \ +RUN git --version && \ + docker --version && \ node --version ENV DEBIAN_FRONTEND=