From 3b5ab266207fad0b2d77e3c4574fe0d03c999d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 29 Oct 2024 17:55:09 +0100 Subject: [PATCH] no longer need to install edx-search from fork --- tutor/templates/build/openedx/Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index 12bed00b97..8723c2c12e 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -106,12 +106,6 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared \ # Install scorm xblock RUN pip install "openedx-scorm-xblock>=18.0.0,<19.0.0" -# Install edx-search fork with meilisearch engine -# TODO this should be a temporary change for the duration of the Sumac branch testing. -# After that, the corresponding change should have been merged in edx-search and the -# package upgraded in edx-platform (sumac release branch). -RUN pip install git+https://github.com/regisb/edx-search@regisb/meilisearch#edx-search - {% for extra_requirements in OPENEDX_EXTRA_PIP_REQUIREMENTS %} RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared \ pip install '{{ extra_requirements }}'