公告板
版本库
filestore
活动
搜索
登录
许永昊
/
rag-gateway
派生自
rag-gateway
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
ragflow发送消息前查找消息历史并放到消息里
zhangqian
2024-10-17
f5f6ab74044362e44262c39b1b6e2a88a36e0f91
[~xuyonghao/rag-gateway.git]
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.11
# 安装 PyInstaller
RUN pip install pyinstaller
# 复制项目文件到容器中
COPY . /app
WORKDIR /app
# 安装项目依赖
RUN pip install -r requirements.txt
# 使用 PyInstaller 打包应用,并确保文件被复制到 dist 目录
RUN pyinstaller -F main.py