From 04a4726e2e19a3cdd59a0296093d8f5c917753f2 Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Thu, 15 May 2025 09:39:28 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Added=20libmagic=20download=20in=20?= =?UTF-8?q?Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 74991d8..b3b8529 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,6 +4,9 @@ FROM python:3.12-slim # Set workdir WORKDIR /app +# Install system dependence (libmagic) +RUN apt-get update && apt-get install -y libmagic1 + # Copy the file with the requirements COPY requirements.txt .