Skip to content

Commit

Permalink
fix: wrong variable name for extra_requirement for pip extra requirem…
Browse files Browse the repository at this point in the history
…ents

Co-authored-by: Muhammad Faraz  Maqsood <[email protected]>
  • Loading branch information
Faraz32123 and Muhammad Faraz Maqsood authored Nov 8, 2023
1 parent 4e90634 commit 811e792
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [BugFix] Corrected variable name for installing extra pip requirements. (by @Faraz32123)
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ENV PATH /openedx/nodeenv/bin:${PATH}
# instructions to benefit from docker image caching
# Install base requirements
RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install -r requirements.txt
{% for extra_requirement in DISCOVERY_EXTRA_PIP_REQUIREMENTS %}RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install '{{ extra_requirements }}'
{% for extra_requirement in DISCOVERY_EXTRA_PIP_REQUIREMENTS %}RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install '{{ extra_requirement }}'
{% endfor %}

# Install npm, bower requirements
Expand Down

0 comments on commit 811e792

Please sign in to comment.