Skip to content

Commit 0e47034

Browse files
authored
Merge pull request #7409 from readthedocs/docker-local-req
Docker: install requirements from local changes
2 parents 583bc67 + 2f227d0 commit 0e47034

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

common

dockerfiles/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ RUN ln -s /usr/bin/python3 /usr/bin/python
3939

4040
WORKDIR /tmp
4141

42-
RUN curl -O https://raw.githubusercontent.com/readthedocs/readthedocs.org/master/requirements/pip.txt
43-
RUN curl -O https://raw.githubusercontent.com/readthedocs/readthedocs.org/master/requirements/docker.txt
42+
COPY requirements/pip.txt pip.txt
43+
COPY requirements/docker.txt docker.txt
4444
RUN pip3 install --no-cache-dir -r docker.txt
4545

4646
# Install readthedocs-ext only if GITHUB_TOKEN is provided

0 commit comments

Comments
 (0)