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