Task 3: React Frontend

This commit is contained in:
RobinB27
2025-11-15 22:41:26 +01:00
parent ebea7897f2
commit 3a61b72642
30 changed files with 820 additions and 0 deletions

8
task_3_react/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
RUN npm run build
EXPOSE 5173
CMD ["npm", "run", "start"]