|
Lubomír Sedlář |
1bbc64 |
FROM registry.fedoraproject.org/fedora:28
|
|
Adam Williamson |
c604a9 |
MAINTAINER Patrick Uiterwijk <patrick@puiterwijk.org></patrick@puiterwijk.org>
|
|
Adam Williamson |
c604a9 |
|
|
Adam Williamson |
c604a9 |
VOLUME ["/repos"]
|
|
Adam Williamson |
c604a9 |
RUN mkdir /code
|
|
Adam Williamson |
c604a9 |
|
|
Lenka Segura |
322ad0 |
RUN dnf install -y python3-devel python3-setuptools python3-nose python3-bcrypt python3-alembic \
|
|
Lenka Segura |
322ad0 |
python3-arrow python3-binaryornot python3-bleach python3-blinker \
|
|
Lenka Segura |
322ad0 |
python3-chardet python3-cryptography python3-docutils python3-flask \
|
|
Lenka Segura |
322ad0 |
python3-flask-wtf python3-markdown python3-psutil \
|
|
Lenka Segura |
322ad0 |
python3-pygit2 python3-fedora python3-openid python3-openid-cla \
|
|
Lenka Segura |
322ad0 |
python3-openid-teams python3-straight-plugin python3-wtforms python3-munch \
|
|
Lenka Segura |
322ad0 |
python3-enum34 python3-redis python3-sqlalchemy systemd gitolite3 \
|
|
Lenka Segura |
322ad0 |
python3-filelock \
|
|
Lenka Segura |
322ad0 |
python3-fedora-flask python3-pillow python3-psycopg2 python3-requests \
|
|
Lenka Segura |
322ad0 |
python3-kitchen
|
|
Adam Williamson |
c604a9 |
|
|
Lenka Segura |
322ad0 |
RUN dnf install -y python3-celery
|
|
Adam Williamson |
c604a9 |
|
|
Adam Williamson |
c604a9 |
WORKDIR /code
|
|
Lenka Segura |
322ad0 |
ENTRYPOINT ["/usr/bin/celery-3", "-A", "pagure.lib.tasks_services", "worker", "--loglevel", "info", "-Q", "pagure_logcom"]
|
|
Adam Williamson |
c604a9 |
|
|
Adam Williamson |
c604a9 |
# Code injection is last to make optimal use of caches
|
|
Adam Williamson |
c604a9 |
VOLUME ["/code"]
|
|
Adam Williamson |
c604a9 |
# Openshift: COPY / /code
|
|
Adam Williamson |
c604a9 |
VOLUME ["/attachments"]
|
|
Adam Williamson |
c604a9 |
# Ideally this would run as non-root, but that needs the /repos owned correctly
|
|
Adam Williamson |
c604a9 |
ENV C_FORCE_ROOT true
|