Initial: Quizalarm Quiz-Plattform

This commit is contained in:
2026-04-15 21:55:03 +02:00
commit 08b606d5b2
15 changed files with 2345 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY . .
EXPOSE 7849
CMD ["node", "server/index.js"]