base 1.5 KB

12345678910111213141516171819202122232425262728
  1. FROM registry.fedoraproject.org/fedora:31
  2. LABEL maintainers="Patrick Uiterwijk <patrick@puiterwijk.org>, Andrew Engelbrecht <andrew@engelbrecht.io>"
  3. # using distro packages instead of pip, for a stable base image
  4. RUN dnf -y update && \
  5. dnf -y install findutils gcc git libgit2-devel python3-alembic \
  6. python3-arrow python3-bcrypt python3-beautifulsoup4 \
  7. python3-binaryornot python3-black python3-bleach \
  8. python3-blinker python3-celery python3-chardet \
  9. python3-coverage python3-cryptography python3-devel \
  10. python3-docutils python3-eventlet python3-fedmsg \
  11. python3-fedora python3-fedora-flask python3-filelock \
  12. python3-flake8 python3-flask python3-flask-oidc \
  13. python3-flask-wtf python3-funcsigs python3-jinja2 \
  14. python3-kitchen python3-markdown python3-mock \
  15. python3-munch \
  16. python3-openid python3-openid-cla python3-openid-teams \
  17. python3-pillow python3-psutil python3-psycopg2 \
  18. python3-pygit2 python3-redis python3-requests \
  19. python3-setuptools python3-six python3-sqlalchemy \
  20. python3-straight-plugin python3-trololio \
  21. python-unversioned-command python3-wtforms which \
  22. python3-email-validator \
  23. python3-whitenoise \
  24. && \
  25. dnf clean all