docker-node/Dockerfile
2026-03-13 11:20:07 +05:00

12 строки
179 Б
Docker

FROM docker:dind
# среда
RUN apk add --no-cache git
# nodejs
RUN apk add --no-cache nodejs npm
# check
RUN git --version && \
docker --version && \
node --version