- #############################
- # Django 3.2 pour feeds.duhaz.fr > feeds_duhaz_p3d32x:latest
- FROM python:alpine3.20
- VOLUME /mnt/projet
- WORKDIR /mnt/projet/
- RUN apk add tzdata build-base py-pip py3-mysqlclient mariadb-connector-c-dev libffi-dev openssl-dev cargo
- RUN cp /usr/share/zoneinfo/Europe/Paris /etc/localtime
- RUN echo Europe/Paris > /etc/timezone
- RUN echo Europe/Paris > /etc/TZ
- RUN unset TZ
- RUN apk del tzdata
- RUN pip install --upgrade pip
- RUN pip install Django==3.2.23
- RUN pip install mysqlclient django-crispy-forms==1.12.0 gunicorn social-auth-app-django django-import-export==3.3.8 django-trumbowyg unidecode bleach feedparser beautifulsoup4
|