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 \ && rm -rf /var/lib/apt/lists/* # docker ENV DOCKER_BUILDKIT=1 RUN apt-get update && apt-get install -y --no-install-recommends \ docker-cli \ docker-buildx-plugin \ docker-compose-plugin \ && rm -rf /var/lib/apt/lists/* RUN docker buildx create --use --name default-builder # check RUN git --version && \ docker --version && \ node --version ENV DEBIAN_FRONTEND= ENTRYPOINT ["/bin/bash"]