mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-14 09:14:14 +00:00
e993b3109f
Creating soft links to files that do not exist is just madness, let's stop it. Instead, we take advantage of the CONFIG_ROOT environment variable, which allows to place lms/cms.env/auth.json files anywhere.
15 lines
447 B
Docker
15 lines
447 B
Docker
FROM ubuntu:18.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.2 --depth 1 /openedx/edx-notes-api
|
|
WORKDIR /openedx/edx-notes-api
|
|
|
|
RUN pip install -r requirements/base.txt
|
|
|
|
EXPOSE 8000
|
|
CMD gunicorn --name notes --bind=0.0.0.0:8000 --max-requests=1000 notesserver.wsgi:application
|