@@ -26,16 +26,16 @@ COPY ./requirements/ /openedx/edx-platform/requirements
2626COPY ./common/lib/ /openedx/edx-platform/common/lib/
2727
2828ENV PATH /opt/pyenv/versions/3.5.9/bin:${PATH}
29- RUN pip install setuptools==39.0.1 pip==9.0.3
29+ RUN pip install --trusted-host pypi.python.org setuptools==39.0.1 pip==9.0.3
3030
3131# Install patched version of ora2
32- RUN pip install https://github.com/overhangio/edx-ora2/archive/overhangio/boto2to3.zip
32+ RUN pip install --trusted-host pypi.python.org https://github.com/overhangio/edx-ora2/archive/overhangio/boto2to3.zip
3333
3434# Install ironwood-compatible scorm xblock
35- RUN pip install "openedx-scorm-xblock<11.0.0,>=10.0.0"
35+ RUN pip install --trusted-host pypi.python.org "openedx-scorm-xblock<11.0.0,>=10.0.0"
3636
3737# Install development libraries
38- RUN pip install -r requirements/edx/ci-dev.txt
38+ RUN pip install --trusted-host pypi.python.org - r requirements/edx/ci-dev.txt
3939
4040# Using local version
4141COPY ./lms/ /openedx/edx-platform/lms
@@ -84,9 +84,9 @@ COPY ./tox.ini /openedx/edx-platform/
8484COPY ./config /openedx/config
8585
8686# Install edx local
87- RUN pip install setuptools_scm==5.0.2
88- RUN pip install -r requirements/edx/base.txt
89- RUN pip install -r requirements/constraints.txt
87+ RUN pip install --trusted-host pypi.python.org setuptools_scm==5.0.2
88+ RUN pip install --trusted-host pypi.python.org - r requirements/edx/base.txt
89+ RUN pip install --trusted-host pypi.python.org - r requirements/constraints.txt
9090
9191
9292# Install updated version of edxval
0 commit comments