From f469f63d97b07b623dc48d19f84bed063d44e2b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B6=B5=E6=9B=A6?= Date: Wed, 23 Oct 2024 06:22:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E7=BC=BA=E5=B0=91=20libtiff.so.6=20=E6=96=87=E4=BB=B6=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20#244?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8a44f4d..cf090f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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