initial commit

This commit is contained in:
Sebastian Kiepsch
2026-01-06 17:29:24 +01:00
commit 0703ae53e7
7 changed files with 1053 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY server.js ./
EXPOSE 3000
CMD ["node", "server.js"]