10 lines
543 B
Docker
10 lines
543 B
Docker
FROM debian:12-slim
|
|
LABEL maintainer="Zi Gao<zi@mightycastle.net>"
|
|
LABEL version="1.0"
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -qy --no-install-recommends curl software-properties-common git docker.io sudo
|
|
RUN curl -sL https://deb.nodesource.com/setup_22.x | sudo bash -
|
|
RUN apt-get install -qy --no-install-recommends nodejs
|
|
RUN rm -rf /var/lib/apt/lists/* /var/log/*.log /usr/share/doc/* /usr/share/info/* /usr/share/linda/* /usr/share/lintian/overrides/* /usr/share/man/* /etc/cron.daily/* /etc/cron.d/*
|