Skip to content

Commit 55b7e25

Browse files
committed
Merge branch 'master' into raise-404-for-url-errors
2 parents cc9fb2f + ef8bbe0 commit 55b7e25

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ COPY ./requirements/ /openedx/edx-platform/requirements
2626
COPY ./common/lib/ /openedx/edx-platform/common/lib/
2727

2828
ENV 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
4141
COPY ./lms/ /openedx/edx-platform/lms
@@ -84,9 +84,9 @@ COPY ./tox.ini /openedx/edx-platform/
8484
COPY ./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

Comments
 (0)