From a161dbf8432e986f782fa85f063d17ee57d28fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Sat, 15 Aug 2020 17:24:11 +0200 Subject: [PATCH] Fix "FileError" on Scorm package upload in Scorm XBlock See https://github.com/overhangio/openedx-scorm-xblock/issues/3 --- CHANGELOG.md | 1 + tutor/templates/build/openedx/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bba96a..f8cb24c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +- [Bugfix] Fix "FileError" on Scorm package upload in Scorm XBlock - 💥[Improvement] Serve openedx static assets with [whitenoise](http://whitenoise.evans.io/en/stable/) instead of nginx. This removes the `k8s-deployments-nginx-init-containers` patch. Plugins are encouraged to implement static asset serving with Whitenoise as well. - [Bugfix] Fix dependency on mysql service when mysql is not activated - [Improvement] Improve openedx Docker image build time and size with multi-stage build diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index 8c35290..53cedbc 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -82,7 +82,7 @@ RUN pip install -r ./requirements/edx/base.txt RUN pip install https://github.com/overhangio/edx-ora2/archive/overhangio/boto2to3.zip # Install scorm xblock -RUN pip install "openedx-scorm-xblock<11.0.0,>=10.0.0" +RUN pip install "openedx-scorm-xblock<11.0.0,>=10.0.1" # Install whitenoise, for serving static assets RUN pip install "whitenoise==5.1.0"