From 479b58cdb05223929885efacc2a797b7728fead5 Mon Sep 17 00:00:00 2001 From: jfavellar90 Date: Tue, 21 Nov 2023 06:46:41 -0500 Subject: [PATCH] chore: addressing comments --- tutorxqueue/templates/xqueue/build/xqueue/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile b/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile index 7ee46f6..413124b 100644 --- a/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile +++ b/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile @@ -20,7 +20,9 @@ WORKDIR /openedx/xqueue ###### Install python venv ###### RUN python -m venv /openedx/venv ENV PATH /openedx/venv/bin:${PATH} - +# https://pypi.org/project/setuptools/ +# https://pypi.org/project/pip/ +# https://pypi.org/project/wheel/ RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install setuptools==68.2.2 pip==23.2.1. wheel==0.41.2 RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install -r requirements.txt RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install uwsgi==2.0.22