docker-node/Dockerfile
2026-03-13 09:15:34 +05:00

20 строки
409 Б
Docker

FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
# nodejs
RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs \
&& rm -rf /var/lib/apt/lists/*
# docker
RUN apt-get update && apt-get install -y --no-install-recommends \
docker-cli \
&& rm -rf /var/lib/apt/lists/*
# check
RUN docker --version && \
node --version
ENV DEBIAN_FRONTEND=
ENTRYPOINT ["/bin/bash"]