added backendV2

This commit is contained in:
2025-11-02 16:55:16 +01:00
parent f49da68e15
commit 2f37ae8067
14 changed files with 1756 additions and 0 deletions

12
backendV2/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /backendV2
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8004
CMD ["npm", "start"]