fix: 尝试修复缺少 libtiff.so.6 文件的问题 #244

This commit is contained in:
涵曦 2024-10-23 06:22:00 +08:00
parent 6544bb2ff1
commit f469f63d97

View File

@ -12,6 +12,11 @@ COPY install_dependencies.sh .
RUN bash install_dependencies.sh
FROM python:3.10-slim
RUN apt-get update && apt-get install -y \
libtiff6 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=builder /app/.venv /app/.venv
COPY --from=builder /app/ffmpeg /app/ffmpeg