10 lines
544 B
Docker
10 lines
544 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 \
|
|
&& curl -sL https://deb.nodesource.com/setup_22.x | sudo bash - \
|
|
&& apt-get install -qy --no-install-recommends nodejs \
|
|
&& 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/*
|