12 строки
179 Б
Docker
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
|