feat: initialize backend environment with Docker setup and configuration files

This commit is contained in:
2025-06-29 19:10:43 +02:00
parent d116715aae
commit c165a0f71b
6 changed files with 79 additions and 3 deletions

12
backend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 4000
CMD ["npm", "start"]