1 Star 0 Fork 0

码农博士的博客/MoneyPrinter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 803 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ricardo Simoes 提交于 2024-02-09 23:39 . refactor docker setup
FROM python:3.11-slim-buster
RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential autoconf pkg-config wget ghostscript curl libpng-dev
RUN wget https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.0-31.tar.gz && \
tar xzf 7.1.0-31.tar.gz && \
rm 7.1.0-31.tar.gz && \
apt-get clean && \
apt-get autoremove
RUN sh ./ImageMagick-7.1.0-31/configure --prefix=/usr/local --with-bzlib=yes --with-fontconfig=yes --with-freetype=yes --with-gslib=yes --with-gvc=yes --with-jpeg=yes --with-jp2=yes --with-png=yes --with-tiff=yes --with-xml=yes --with-gs-font-dir=yes && \
make -j && make install && ldconfig /usr/local/lib/
WORKDIR /tmp
RUN pip install --upgrade pip
WORKDIR /app
ADD ./requirements.txt .
RUN pip install -r requirements.txt
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/1120855315/MoneyPrinter.git
git@gitee.com:1120855315/MoneyPrinter.git
1120855315
MoneyPrinter
MoneyPrinter
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385