Initial commit gov-llm-v2

This commit is contained in:
2026-02-04 00:04:31 +05:00
commit 07c4f48601
43 changed files with 7640 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# Открываем порт, указанный в vite.config.ts
EXPOSE 4175
# Запускаем режим preview, который подхватит настройки прокси
CMD ["npm", "run", "preview"]