feat: Add base files

This commit is contained in:
2025-04-16 16:04:34 +02:00
parent 96c2cb6a4f
commit a19f4f1aea
20 changed files with 3730 additions and 0 deletions

7
backend/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:23-slim
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 5000
CMD ["node", "index.js"]