1 Star 1 Fork 0

mystuart/ai4index

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dockerfile 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
mystuart 提交于 2024-01-22 14:22 . 添加dockerfile
# 指定基于的镜像
FROM python:3.11.7-slim-bullseye
# 指定工作路径为 /app
WORKDIR /app
# 准备基础依赖
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
# 准备模型依赖
COPY requirements_model.txt /app/
RUN pip install --no-cache-dir -r requirements_model.txt
# 拷贝工程文件
COPY ./etc/ /app/etc/
COPY ./include/ /app/include/
COPY ./model/ /app/model/
COPY ./parse/ /app/parse/
COPY ./templates/ /app/templates/
COPY __init__.py app.py /app/
# 指定暴露端口为 5000
EXPOSE 5000
# 定义启动命令
CMD ["python", "app.py"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mystuart/ai4index.git
[email protected]:mystuart/ai4index.git
mystuart
ai4index
ai4index
master

搜索帮助