From 07918006c73e72d02833d063020e29f76282a3ed Mon Sep 17 00:00:00 2001 From: Mootfrost777 Date: Sun, 4 Jun 2023 11:59:39 +0300 Subject: [PATCH] prod fix --- backend/app/config.py | 2 +- frontend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/config.py b/backend/app/config.py index fa99ca6..52b2f88 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -4,7 +4,7 @@ from pydantic import BaseSettings class Config(BaseSettings): host: str = '127.0.0.1' - port: int = 2344 + port: int = 80 birthdate: date = date(2007, 10, 13) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 993c517..1865853 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -7,7 +7,7 @@ RUN yarn COPY . . RUN yarn build -FROM nginx:stable-alpine as +FROM nginx:stable-alpine COPY --from=builder /app/dist /usr/share/nginx/html