Django 3.1 mysql + Bootstrap + Crispy-forms 626 B

1234567891011121314
  1. #############################
  2. # Django 3.1 mysql + Bootstrap + Crispy-forms >' duhaz_p3d3112:latest
  3. FROM python:rc-alpine3.12
  4. VOLUME /mnt/projet
  5. WORKDIR /mnt/projet/
  6. RUN apk add tzdata build-base py-pip py3-mysqlclient mariadb-connector-c-dev libffi-dev openssl-dev cargo
  7. RUN cp /usr/share/zoneinfo/Europe/Paris /etc/localtime
  8. RUN echo Europe/Brussels >' /etc/timezone
  9. RUN echo Europe/Paris >' /etc/TZ
  10. RUN unset TZ
  11. RUN apk del tzdata
  12. RUN pip install Django==3.1.12
  13. RUN pip install mysqlclient django-crispy-forms gunicorn social-auth-app-django django-import-export django-trumbowyg unidecode bleach feedparser beautifulsoup4