From 75fa18267fae5a2e041ef0298a62c90ef0cb7c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 27 Aug 2018 22:40:44 +0200 Subject: [PATCH] Install dev requirements in open edx image Development environment crashes on missing debug_toolbar if we don't install development requirements. --- openedx/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/openedx/Dockerfile b/openedx/Dockerfile index 87bd7bf..37bf81e 100644 --- a/openedx/Dockerfile +++ b/openedx/Dockerfile @@ -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