Dockerfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # 此Dockerfile适用于“无本地模型”的迷你运行环境构建
  2. # 如果需要使用chatglm等本地模型或者latex运行依赖,请参考 docker-compose.yml
  3. # - 如何构建: 先修改 `config.py`, 然后 `docker build -t gpt-academic . `
  4. # - 如何运行(Linux下): `docker run --rm -it --net=host gpt-academic `
  5. # - 如何运行(其他操作系统,选择任意一个固定端口50923): `docker run --rm -it -e WEB_PORT=50923 -p 50923:50923 gpt-academic `
  6. FROM python:3.11
  7. # 非必要步骤,更换pip源 (以下三行,可以删除)
  8. RUN echo '[global]' > /etc/pip.conf && \
  9. echo 'index-url = https://mirrors.aliyun.com/pypi/simple/' >> /etc/pip.conf && \
  10. echo 'trusted-host = mirrors.aliyun.com' >> /etc/pip.conf
  11. # 语音输出功能(以下两行,第一行更换阿里源,第二行安装ffmpeg,都可以删除)
  12. RUN UBUNTU_VERSION=$(awk -F= '/^VERSION_CODENAME=/{print $2}' /etc/os-release); echo "deb https://mirrors.aliyun.com/debian/ $UBUNTU_VERSION main non-free contrib" > /etc/apt/sources.list; apt-get update
  13. RUN apt-get install ffmpeg -y
  14. # 进入工作路径(必要)
  15. WORKDIR /gpt
  16. # 安装大部分依赖,利用Docker缓存加速以后的构建 (以下两行,可以删除)
  17. COPY requirements.txt ./
  18. RUN pip3 install -r requirements.txt
  19. # 装载项目文件,安装剩余依赖(必要)
  20. COPY . .
  21. RUN pip3 install -r requirements.txt
  22. # 非必要步骤,用于预热模块(可以删除)
  23. RUN python3 -c 'from check_proxy import warm_up_modules; warm_up_modules()'
  24. # 启动(必要)
  25. CMD ["python3", "-u", "main.py"]