30 Star 142 Fork 67

Gitee 极速下载/akshare

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/jindaxiang/akshare
克隆/下载
Dockerfile 749 Bytes
一键复制 编辑 原始数据 按行查看 历史
akshare 提交于 2024-03-21 11:51 . docs: add comment
# 使用精简镜像,镜像体积从 1.2G 下降为约 400M,提高启动效率,同时升级到 Python 3.12.x 提高 20% 以上性能
FROM python:3.12-slim-bullseye
# 升级 pip 到最新版
RUN pip install --upgrade pip
# 新增 gunicorn 安装,提升并发和并行能力
RUN pip install --no-cache-dir akshare fastapi uvicorn gunicorn -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com --upgrade
RUN pip install --no-cache-dir aktools -i https://pypi.org/simple --upgrade
# 设置工作目录方便启动
ENV APP_HOME=/usr/local/lib/python3.11/site-packages/aktools
WORKDIR $APP_HOME
# 默认启动 gunicorn 服务
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "main:app", "-k", "uvicorn.workers.UvicornWorker"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/akshare.git
git@gitee.com:mirrors/akshare.git
mirrors
akshare
akshare
main

搜索帮助