Initialize backend and frontend structure with Docker setup and dependencies

This commit is contained in:
Mireya Cueto Garrido
2026-04-16 09:12:00 +02:00
commit 1b7214d96c
6 changed files with 81 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:20
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]
View File