2018-06-02 01:29:53 +00:00
|
|
|
FROM ubuntu:16.04
|
|
|
|
|
|
|
|
RUN apt update && \
|
|
|
|
apt upgrade -y && \
|
|
|
|
apt install -y language-pack-en git git-core python-pip libmysqlclient-dev
|
|
|
|
|
|
|
|
RUN mkdir /openedx
|
2018-09-15 13:20:34 +00:00
|
|
|
RUN git clone https://github.com/edx/xqueue --branch open-release/hawthorn.1 --depth 1 /openedx/xqueue
|
2018-06-02 01:29:53 +00:00
|
|
|
WORKDIR /openedx/xqueue
|
|
|
|
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
ENV DJANGO_SETTINGS_MODULE xqueue.universal
|
|
|
|
RUN ln -s /openedx/config/universal.py xqueue/universal.py
|
|
|
|
|
|
|
|
EXPOSE 8040
|
|
|
|
CMD gunicorn --name xqueue --bind=0.0.0.0:8040 --max-requests=1000 xqueue.wsgi:application
|