Этот коммит содержится в:
Afireal 2026-03-13 10:04:18 +05:00
родитель 980de31b05
коммит 9d48de8845

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

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