From f26976f1dd7f6f523692ddd776db95156b7de896 Mon Sep 17 00:00:00 2001 From: Soxoj <31013580+soxoj@users.noreply.github.com> Date: Sat, 21 Mar 2026 20:02:35 +0100 Subject: [PATCH] Dockerfile fix (#2290) --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ef2ec0..81bf6e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,13 +4,13 @@ WORKDIR /app RUN pip install --no-cache-dir --upgrade pip RUN apt-get update && \ apt-get install --no-install-recommends -y \ - gcc \ - musl-dev \ - libxml2 \ + build-essential \ + python3-dev \ + pkg-config \ + libcairo2-dev \ libxml2-dev \ - libxslt-dev \ - && \ - rm -rf /var/lib/apt/lists/* /tmp/* + libxslt1-dev \ + && rm -rf /var/lib/apt/lists/* /tmp/* COPY . . RUN YARL_NO_EXTENSIONS=1 python3 -m pip install --no-cache-dir . # For production use, set FLASK_HOST to a specific IP address for security