Clankergit add .!

This commit is contained in:
usernames122
2025-09-13 20:53:31 +02:00
commit 734368103b
7 changed files with 1767 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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