Skip to content

Commit

Permalink
Installation d'ImageMagick avec toutes les dépendances
Browse files Browse the repository at this point in the history
imagemagick : Le paquet principal d'ImageMagick.

imagemagick-common et libmagickcore-6.q16-6-extra : Des bibliothèques supplémentaires qui peuvent être nécessaires pour avoir la commande magick.
  • Loading branch information
tiritibambix authored Dec 18, 2024
1 parent afd2516 commit 9c694f2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
FROM python:3.9-slim

# Installer les dépendances système (ImageMagick)
# Installer les dépendances système (ImageMagick et les outils nécessaires)
RUN apt-get update && apt-get install -y \
imagemagick \
imagemagick-common \
libmagickcore-6.q16-6-extra \
&& rm -rf /var/lib/apt/lists/*

# Vérifier l'installation de magick
RUN which magick || echo "magick not found"

# Installer Flask et les autres dépendances Python
WORKDIR /app
COPY . /app
Expand Down

0 comments on commit 9c694f2

Please sign in to comment.