-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
65 lines (53 loc) · 1.7 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Choisir l'image de base
FROM python:3.9-slim
# Dépendances nécessaires pour compiler ImageMagick et autres utilitaires
RUN apt-get update && apt-get install -y \
build-essential \
wget \
tar \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libgif-dev \
libx11-dev \
libxt-dev \
libmagickcore-dev \
libmagickwand-dev \
exiftool \
zip unzip \
cron \
&& rm -rf /var/lib/apt/lists/*
# Télécharger et installer ImageMagick 7.1.1-41
RUN wget https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.1-41.tar.gz -O /tmp/imagemagick.tar.gz \
&& tar -xvzf /tmp/imagemagick.tar.gz -C /tmp \
&& cd /tmp/ImageMagick-7.1.1-41 \
&& ./configure --prefix=/usr/local --disable-shared --without-x \
&& make \
&& make install \
&& rm -rf /tmp/*
# Ajouter /usr/local/bin au PATH
ENV PATH="/usr/local/bin:${PATH}"
# Vérifier que ImageMagick est bien installé
RUN magick -version
# Copier l'application dans le conteneur
WORKDIR /app
COPY . /app
# Rendre les scripts exécutables
RUN chmod +x /app/cleanup.py /app/cleanup.sh
# Configurer le cron job
RUN echo "0 */12 * * * /usr/local/bin/python /app/cleanup.py >> /var/log/cleanup.log 2>&1" > /etc/cron.d/cleanup-cron
RUN chmod 0644 /etc/cron.d/cleanup-cron
RUN crontab /etc/cron.d/cleanup-cron
# Installer les dépendances Python
RUN pip install --no-cache-dir -r /app/requirements.txt
# Vérifier l'installation de Gunicorn
RUN pip install gunicorn && \
gunicorn --version && \
which gunicorn
# Script de démarrage pour lancer cron et l'application
COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh
# Exposer le port
EXPOSE 5000
# Utiliser le script de démarrage
CMD ["/app/start.sh"]