10 lines
254 B
Docker
10 lines
254 B
Docker
|
|
FROM debian:stable
|
||
|
|
|
||
|
|
# Install Node.js (version 22)
|
||
|
|
RUN apt-get update && \
|
||
|
|
apt-get install -y curl && \
|
||
|
|
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
||
|
|
apt-get install -y nodejs && \
|
||
|
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
EXPOSE 3000
|