add docker files

This commit is contained in:
2025-05-16 12:53:49 +03:00
parent 9cf83b9710
commit bb0440986c
5 changed files with 18 additions and 1 deletions

2
frontend/.dockerignore Normal file
View File

@@ -0,0 +1,2 @@
.dockerignore
Dockerfile

7
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:23-alpine
WORKDIR /build
COPY . ./
RUN npm install
RUN npm run build
EXPOSE 3000
CMD [ "npm", "start" ]