mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-18 02:55:17 +00:00
18 lines
579 B
Docker
18 lines
579 B
Docker
|
FROM ubuntu:16.04
|
||
|
|
||
|
RUN apt update && \
|
||
|
apt upgrade -y && \
|
||
|
apt install -y language-pack-en git python-pip libmysqlclient-dev
|
||
|
|
||
|
RUN mkdir /openedx
|
||
|
RUN git clone https://github.com/edx/edx-notes-api --branch open-release/hawthorn.1 --depth 1 /openedx/edx-notes-api
|
||
|
WORKDIR /openedx/edx-notes-api
|
||
|
|
||
|
RUN pip install -r requirements/base.txt
|
||
|
|
||
|
ENV DJANGO_SETTINGS_MODULE notesserver.settings.universal
|
||
|
RUN ln -s /openedx/config/universal.py notesserver/settings/universal.py
|
||
|
|
||
|
EXPOSE 8000
|
||
|
CMD gunicorn --name notes --bind=0.0.0.0:8000 --max-requests=1000 notesserver.wsgi:application
|