Этот коммит содержится в:
Afireal 2026-03-13 11:20:07 +05:00
родитель 58f2c3801e
коммит b3b4a52969
2 изменённых файлов: 5 добавлений и 21 удалений

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

@ -1,28 +1,12 @@
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
FROM docker:dind
# среда
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
git \
&& rm -rf /var/lib/apt/lists/*
RUN apk add --no-cache git
# 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 \
&& rm -rf /var/lib/apt/lists/*
RUN apk add --no-cache nodejs npm
# check
RUN git --version && \
docker --version && \
node --version
ENV DEBIAN_FRONTEND=
ENTRYPOINT ["/bin/bash"]