rogerxavier's picture
Update Dockerfile
47471cd verified
raw
history blame
No virus
1.36 kB
FROM python:3.9
RUN apt update && apt install -y libgl1-mesa-glx
##安装imagemagic ,linux使用convert路径即可
RUN apt install -y imagemagick
ENV IMAGEMAGICK_BINARY=/usr/bin/convert
RUN sed -i 's/none/read,write/g' /etc/ImageMagick-6/policy.xml
##安装imagemagic
RUN pip install -U pip
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
# #目前的写法是成功找到了magick文件并且python可以执行,就是magick文件没有找对 -因为找convert才对
# # 修改 magick 文件的执行权限
# RUN chmod +x ./magick
# ENV IMAGEMAGICK_BINARY=./magick
EXPOSE 7860
#server.py
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]
# #现成magick docker镜像测试
# #这个dpokidov/imagemagick 含有magick命令
# FROM dpokidov/imagemagick
# # 安装 Python 3.9
# RUN apt-get update && apt-get install -y python3.9 libgl1-mesa-glx libglib2.0-dev
# # 设置 Python 3.9 作为默认 Python 版本
# RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
# # 安装 pip
# RUN apt-get install -y python3-pip
# # 升级 pip
# RUN python3.9 -m pip install --upgrade pip
# RUN pip install -U pip
# COPY requirements.txt .
# RUN pip install -r requirements.txt
# COPY . .
# EXPOSE 7860
# #RUN python3 server.py
# #结束周期
# CMD python3 server.py