1 Star 1 Fork 0

Neo/creative-ac-pro

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Dockerfile 330 Bytes
Copy Edit Raw Blame History
Neo authored 2024-09-16 19:59 +08:00 . 更新文件结构
# 使用官方的 Python 运行时作为父镜像
FROM python:3.9-slim
# 设置工作目录
WORKDIR /app
# 将当前目录内容复制到容器中的/app
COPY . .
# 安装requirements.txt的依赖包
RUN pip install -r requirements.txt
# 运行应用的命令
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "1888"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/neo163/creative-ac-pro.git
git@gitee.com:neo163/creative-ac-pro.git
neo163
creative-ac-pro
creative-ac-pro
master

Search