6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-28 04:09:01 +00:00
tutor/openedx/Dockerfile

73 lines
3.1 KiB
Docker
Raw Normal View History

2017-07-03 10:39:19 +00:00
FROM ubuntu:16.04
############ common to lms & cms
2017-07-03 10:39:19 +00:00
# Install system requirements
2017-12-26 00:16:35 +00:00
RUN apt update && \
apt upgrade -y && \
# Global requirements
apt install -y language-pack-en git python-virtualenv build-essential software-properties-common curl git-core libxml2-dev libxslt1-dev python-pip libmysqlclient-dev python-apt python-dev libxmlsec1-dev libfreetype6-dev swig gcc g++ && \
# openedx requirements
apt install -y gettext gfortran graphviz graphviz-dev libffi-dev libfreetype6-dev libgeos-dev libjpeg8-dev liblapack-dev libpng12-dev libsqlite3-dev libxml2-dev libxmlsec1-dev libxslt1-dev nodejs npm ntp pkg-config && \
2017-12-26 00:16:35 +00:00
# Our requirements
apt install -y mysql-client
2017-07-03 10:39:19 +00:00
# Install symlink so that we have access to 'node' binary without virtualenv.
# This replaces the "nodeenv" install.
RUN apt install -y nodejs-legacy
# Static assets will reside in /openedx/data and edx-platform will be
2017-12-26 00:16:35 +00:00
# checked-out in /openedx/
RUN mkdir /openedx /openedx/data /openedx/edx-platform
2017-07-03 10:39:19 +00:00
WORKDIR /openedx/edx-platform
2017-12-26 00:16:35 +00:00
## Checkout edx-platform code
ARG EDX_PLATFORM_REPOSITORY=https://github.com/edx/edx-platform.git
2018-10-02 06:36:29 +00:00
ARG EDX_PLATFORM_VERSION=open-release/hawthorn.2
RUN git clone $EDX_PLATFORM_REPOSITORY --branch $EDX_PLATFORM_VERSION --depth 1 .
2017-07-03 10:39:19 +00:00
# Install python requirements (clone source repos in a separate dir, otherwise
# will be overwritten when we mount edx-platform)
ENV NO_PYTHON_UNINSTALL 1
RUN pip install --src ../venv/src -r requirements/edx/base.txt
RUN pip install --src ../venv/src -r requirements/edx/development.txt
2017-07-03 10:39:19 +00:00
# Install nodejs requirements
RUN npm install
ENV PATH ./node_modules/.bin:${PATH}
2017-07-03 10:39:19 +00:00
# Link configuration files to common /openedx/config folder, which should later
# be mounted as a volume. Note that this image will not be functional until
# config files have been mounted inside the container
RUN mkdir /openedx/config
RUN ln -s /openedx/config/universal/lms/ /openedx/edx-platform/lms/envs/universal \
&& ln -s /openedx/config/universal/cms/ /openedx/edx-platform/cms/envs/universal
RUN ln -s /openedx/config/lms.env.json /openedx/ \
&& ln -s /openedx/config/cms.env.json /openedx/ \
&& ln -s /openedx/config/lms.auth.json /openedx/ \
&& ln -s /openedx/config/cms.auth.json /openedx/
# Dockerize will be useful to wait for mysql DB availability
ENV DOCKERIZE_VERSION v0.6.1
RUN curl -L -o dockerize.tar.gz https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
&& tar -C /usr/local/bin -xzvf dockerize.tar.gz \
&& rm dockerize.tar.gz
# Install private requirements as late as possible, so they can be modified frequently
COPY ./requirements/ /tmp/requirements
RUN touch /tmp/requirements/private.txt && pip install --src ../venv/src -r /tmp/requirements/private.txt
# Copy convenient scripts
COPY ./bin/docker-entrypoint.sh /usr/local/bin/
2017-07-03 10:39:19 +00:00
2017-12-26 00:16:35 +00:00
# service variant is "lms" or "cms"
ENV SERVICE_VARIANT lms
ENV SETTINGS universal.production
2017-12-26 00:16:35 +00:00
# Entrypoint will fix permissiosn of all files and run commands as openedx
ENTRYPOINT ["docker-entrypoint.sh"]
2017-07-03 10:39:19 +00:00
# Run server
EXPOSE 8000
CMD gunicorn --name ${SERVICE_VARIANT} --bind=0.0.0.0:8000 --max-requests=1000 ${SERVICE_VARIANT}.wsgi:application