This commit is contained in:
2025-01-27 16:28:30 +03:00
parent 5994fb8f7f
commit 7a1707ac49
26 changed files with 18290 additions and 36 deletions

9
frontend.Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:22-bullseye
WORKDIR /opt/frontend
COPY frontend .
RUN npm i
EXPOSE 3000
CMD ["npm", "run", "start"]