Этот коммит содержится в:
Afireal 2026-03-13 10:03:21 +05:00
родитель 488526dbd7
коммит f186c28f99

Просмотреть файл

@ -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=