Skip to content

Commit 1c24f04

Browse files
WillAydpmhatre1
authored andcommitted
Allow Dockerfile to use local requirements.txt (pandas-dev#57904)
1 parent 761a04d commit 1c24f04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ RUN apt-get install -y build-essential
99
RUN apt-get install -y libhdf5-dev libgles2-mesa-dev
1010

1111
RUN python -m pip install --upgrade pip
12-
RUN python -m pip install \
13-
-r https://raw.githubusercontent.com/pandas-dev/pandas/main/requirements-dev.txt
12+
COPY requirements-dev.txt /tmp
13+
RUN python -m pip install -r /tmp/requirements-dev.txt
1414
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)