diff --git a/Dockerfile b/Dockerfile index 7a9dd2b..e81d292 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,11 +7,11 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # 复制应用代码 -COPY src/ ./src/ -COPY run.py . +# COPY src/ ./src/ +COPY . . # 暴露端口 EXPOSE 8000 # 启动命令 -CMD ["python", "run.py"] \ No newline at end of file +CMD ["python", "app.py"] \ No newline at end of file