Files
shittyserverless/Dockerfile

10 lines
254 B
Docker
Raw Normal View History

2025-09-13 20:53:31 +02:00
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