This commit is contained in:
zhangsan 2025-03-18 19:18:47 +08:00
parent b50458dabb
commit 60b7f5f4cf

View File

@ -11,5 +11,8 @@ RUN pip install --no-cache-dir -r requirements.txt
# 复制整个项目到容器内
COPY . .
# 设置 PYTHONPATH使得 Python 能在 /markdown_operation 中查找模块
ENV PYTHONPATH="/markdown_operation"
# 设置容器启动时运行的命令,比如运行 main.py
CMD ["/bin/bash"]