1 Star 0 Fork 0

nurmemet/tailoring_manager_py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
nurmemet 提交于 2024-12-13 02:20 . ok
FROM python:3.11-slim
# 设置工作目录
WORKDIR /app
# 将当前目录的内容复制到容器的/app目录
COPY . /app
# 安装任何需要的系统依赖(如果有的话)
# RUN apt-get update && apt-get install -y ...
# 永久性设置 pip 使用阿里云的 PyPI 镜像
RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 安装Python依赖
RUN pip install --no-cache-dir -r requirements.txt
# 暴露应用运行所需的端口(如果适用)
EXPOSE 18282
# 启动命令
CMD ["uvicorn", "./app/main:app", "--host", "0.0.0.0", "--port", "18282"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nurApplication/tailoring_manager_py.git
git@gitee.com:nurApplication/tailoring_manager_py.git
nurApplication
tailoring_manager_py
tailoring_manager_py
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385