mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-12 16:26:40 +00:00
f9a202083f
Also, improved openedx logging, so that logs are not emitted twice.
17 lines
366 B
Docker
17 lines
366 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt update && \
|
|
apt install -y python3 python3-pip
|
|
RUN pip3 install jinja2
|
|
|
|
RUN mkdir /openedx
|
|
VOLUME /openedx/config
|
|
COPY ./bin/configure.py /openedx/configure.py
|
|
COPY ./bin/docker-entrypoint.sh /openedx/docker-entrypoint.sh
|
|
WORKDIR /openedx
|
|
|
|
ENV SILENT=''
|
|
ENV ACTIVATE_HTTPS=''
|
|
ENV ACTIVATE_XQUEUE=''
|
|
ENTRYPOINT ["./docker-entrypoint.sh"]
|