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

Install dev requirements in open edx image

Development environment crashes on missing debug_toolbar if we don't
install development requirements.
This commit is contained in:
Régis Behmo 2018-08-27 22:40:44 +02:00
parent 1f69e154c2
commit 75fa18267f

View File

@ -29,6 +29,7 @@ RUN git clone $EDX_PLATFORM_REPOSITORY --branch $EDX_PLATFORM_VERSION --depth 1
# Install python requirements (clone source repos in a separate dir, otherwise
# will be overwritten when we mount edx-platform)
RUN pip install --src ../venv/src -r requirements/edx/base.txt
RUN pip install --src ../venv/src -r requirements/edx/development.txt
# Install nodejs requirements
RUN npm install