6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-27 19:59:02 +00:00

Fix assets collection in docker image

"openedx-assets" script was not copied with the right permissions in the
docker image.
This commit is contained in:
Régis Behmo 2019-07-04 17:36:22 +08:00
parent c07032f826
commit bf046957de

View File

@ -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") }}