This commit is contained in:
Mootfrost777 2023-06-04 11:59:39 +03:00
parent c740fcde52
commit 07918006c7
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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