From 775b07dbccbbfe68ecb2d7944f471596bd6ecd8b Mon Sep 17 00:00:00 2001 From: binary-husky <96192199+binary-husky@users.noreply.github.com> Date: Wed, 18 Oct 2023 11:15:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BADockerfile=E6=B7=BB=E5=8A=A0=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7371e45..f51befa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,34 +1,35 @@ -# 此Dockerfile适用于“无本地模型”的环境构建,如果需要使用chatglm等本地模型或者latex运行依赖,请参考 docker-compose.yml -# 如何构建: 先修改 `config.py`, 然后 `docker build -t gpt-academic . ` -# 如何运行(Linux下): `docker run --rm -it --net=host gpt-academic ` -# 如何运行(其他操作系统,选择任意一个固定端口50923): `docker run --rm -it -e WEB_PORT=50923 -p 50923:50923 gpt-academic ` +# 此Dockerfile适用于“无本地模型”的迷你运行环境构建 +# 如果需要使用chatglm等本地模型或者latex运行依赖,请参考 docker-compose.yml +# - 如何构建: 先修改 `config.py`, 然后 `docker build -t gpt-academic . ` +# - 如何运行(Linux下): `docker run --rm -it --net=host gpt-academic ` +# - 如何运行(其他操作系统,选择任意一个固定端口50923): `docker run --rm -it -e WEB_PORT=50923 -p 50923:50923 gpt-academic ` FROM python:3.11 -# 非必要步骤,更换pip源 +# 非必要步骤,更换pip源 (以下三行,可以删除) RUN echo '[global]' > /etc/pip.conf && \ echo 'index-url = https://mirrors.aliyun.com/pypi/simple/' >> /etc/pip.conf && \ echo 'trusted-host = mirrors.aliyun.com' >> /etc/pip.conf -# 进入工作路径 +# 进入工作路径(必要) WORKDIR /gpt -# 安装大部分依赖,利用Docker缓存加速以后的构建 +# 安装大部分依赖,利用Docker缓存加速以后的构建 (以下三行,可以删除) COPY requirements.txt ./ COPY ./docs/gradio-3.32.6-py3-none-any.whl ./docs/gradio-3.32.6-py3-none-any.whl RUN pip3 install -r requirements.txt -# 装载项目文件,安装剩余依赖 +# 装载项目文件,安装剩余依赖(必要) COPY . . RUN pip3 install -r requirements.txt -# 非必要步骤,用于预热模块 +# 非必要步骤,用于预热模块(可以删除) RUN python3 -c 'from check_proxy import warm_up_modules; warm_up_modules()' -# 启动 +# 启动(必要) CMD ["python3", "-u", "main.py"]