From bf046957decf3039d765f3d6ed3bc283d65846a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 4 Jul 2019 17:36:22 +0800 Subject: [PATCH] Fix assets collection in docker image "openedx-assets" script was not copied with the right permissions in the docker image. --- tutor/templates/build/openedx/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index b59782e..bb43d22 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -67,6 +67,7 @@ COPY settings/cms/*.py ./cms/envs/tutor/ # Copy scripts COPY ./bin /openedx/bin +RUN chmod a+x /openedx/bin/* ENV PATH /openedx/bin:${PATH} {{ patch("openedx-dockerfile-pre-assets") }}