Initial commit gov-llm-v2
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user