fix: wrong variable name for extra_requirement for pip extra requirements
Co-authored-by: Muhammad Faraz Maqsood <faraz.maqsood@a006-01130.home>
This commit is contained in:
parent
4e90634092
commit
811e792a17
@ -0,0 +1 @@
|
||||
- [BugFix] Corrected variable name for installing extra pip requirements. (by @Faraz32123)
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user