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