feat: update Dockerfile

This commit is contained in:
icecheng 2025-09-18 15:51:16 +08:00
parent 1baf9065dc
commit 38ff0ae32a
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# download image here: https://docker.aityp.com/image/docker.io/python:3.12-slim
FROM swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/python:3.12-slim
FROM python:3.12-slim
# Set working directory
WORKDIR /app

View File

@ -23,7 +23,7 @@ class AppSettings(BaseSettings):
class Config:
env_file = "local.env"
env_file = ".env"
app_settings = AppSettings()