|
Clement Verna |
c4390f |
FROM registry.fedoraproject.org/fedora:27
|
|
Patrick Uiterwijk |
57e33f |
MAINTAINER Patrick Uiterwijk <patrick@puiterwijk.org></patrick@puiterwijk.org>
|
|
Patrick Uiterwijk |
57e33f |
|
|
Patrick Uiterwijk |
57e33f |
VOLUME ["/repos"]
|
|
Patrick Uiterwijk |
57e33f |
RUN mkdir /code
|
|
Patrick Uiterwijk |
57e33f |
|
|
Patrick Uiterwijk |
57e33f |
RUN dnf install -y python2-devel python-setuptools python-nose py-bcrypt python-alembic \
|
|
Patrick Uiterwijk |
57e33f |
python-arrow python-binaryornot python-bleach python-blinker \
|
|
Patrick Uiterwijk |
57e33f |
python-chardet python-cryptography python-docutils python-flask \
|
|
Patrick Uiterwijk |
57e33f |
python-flask-wtf python-flask-multistatic python-markdown python-psutil \
|
|
Patrick Uiterwijk |
57e33f |
python-pygit2 python-pygments python-fedora python-openid python-openid-cla \
|
|
Patrick Uiterwijk |
57e33f |
python-openid-teams python-straight-plugin python-wtforms python-munch \
|
|
Patrick Uiterwijk |
57e33f |
python-enum34 python-redis python-sqlalchemy systemd gitolite3 python-filelock \
|
|
Patrick Uiterwijk |
57e33f |
python-fedora-flask python2-pillow python2-psycopg2
|
|
Patrick Uiterwijk |
57e33f |
|
|
Patrick Uiterwijk |
0f077b |
RUN dnf install -y python2-celery
|
|
Patrick Uiterwijk |
0f077b |
|
|
Patrick Uiterwijk |
57e33f |
WORKDIR /code
|
|
Vivek Anand |
6524a3 |
ENTRYPOINT ["/usr/bin/celery", "-A", "pagure.lib.tasks", "worker", "--loglevel", "info"]
|
|
Patrick Uiterwijk |
57e33f |
|
|
Patrick Uiterwijk |
57e33f |
# Code injection is last to make optimal use of caches
|
|
Patrick Uiterwijk |
57e33f |
VOLUME ["/code"]
|
|
Patrick Uiterwijk |
57e33f |
# Openshift: COPY / /code
|
|
Patrick Uiterwijk |
cbb4a3 |
VOLUME ["/attachments"]
|
|
Patrick Uiterwijk |
c9d5be |
# Ideally this would run as non-root, but that needs the /repos owned correctly
|
|
Patrick Uiterwijk |
c9d5be |
ENV C_FORCE_ROOT true
|