8 lines
236 B
Docker
8 lines
236 B
Docker
FROM debian:trixie
|
|
|
|
RUN export LC_ALL=C DEBIAN_FRONTEND=noninteractive && \
|
|
apt-get update && \
|
|
apt-get install -y curl mkosi && \
|
|
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
|
apt-get install -y nodejs
|