This commit is contained in:
2025-08-20 14:10:34 +03:00
commit 34b9672a36
23 changed files with 2633 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22.18.0-alpine as build
WORKDIR /usr/app
COPY . /usr/app
RUN npm i
RUN npm run build
FROM nginx:1.23.1-alpine
RUN rm -rf /usr/share/nginx/html/*
COPY --from=build /usr/app/dist /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]