We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127ecfa commit 038e765Copy full SHA for 038e765
Dockerfile
@@ -12,7 +12,7 @@ COPY pyproject.toml uv.lock ./
12
13
# 导出依赖并安装到系统路径(或使用虚拟环境)
14
# --system 标志允许直接安装在镜像的 Python 环境中,适合容器场景
15
-RUN uv sync --frozen --no-dev --system
+RUN uv sync --frozen --no-dev
16
17
# 最终镜像
18
FROM python:3.11-slim-bookworm
@@ -30,4 +30,4 @@ COPY . .
30
EXPOSE 8000
31
32
# 启动命令
33
-CMD ["python", "main.py"]
+CMD ["python", "tests/mock_server.py"]
0 commit comments