pzx-web-api/Dockerfile

10 lines
282 B
Docker
Raw Normal View History

2023-12-09 17:35:13 +08:00
FROM python:3.11-slim
# 拷贝项目文件
COPY . /app
# 设置工作路径
WORKDIR /app
2023-08-10 12:27:18 +08:00
# 安装依赖
2023-12-09 17:35:13 +08:00
RUN python3 -m pip install -i https://mirrors.aliyun.com/pypi/simple --trusted-host=mirrors.aliyun.com -r requirements.txt
# 启动时运行命令
CMD ["sh", "docker-deploy.sh"]