mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 06:07:56 +00:00
Fix "FileError" on Scorm package upload in Scorm XBlock
See https://github.com/overhangio/openedx-scorm-xblock/issues/3
This commit is contained in:
parent
62d7fd00b9
commit
a161dbf843
@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
|
|||||||
|
|
||||||
## Unreleased
|
## 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.
|
- 💥[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
|
- [Bugfix] Fix dependency on mysql service when mysql is not activated
|
||||||
- [Improvement] Improve openedx Docker image build time and size with multi-stage build
|
- [Improvement] Improve openedx Docker image build time and size with multi-stage build
|
||||||
|
@ -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
|
RUN pip install https://github.com/overhangio/edx-ora2/archive/overhangio/boto2to3.zip
|
||||||
|
|
||||||
# Install scorm xblock
|
# 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
|
# Install whitenoise, for serving static assets
|
||||||
RUN pip install "whitenoise==5.1.0"
|
RUN pip install "whitenoise==5.1.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user