We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 761a04d commit 1c24f04Copy full SHA for 1c24f04
Dockerfile
@@ -9,6 +9,6 @@ RUN apt-get install -y build-essential
9
RUN apt-get install -y libhdf5-dev libgles2-mesa-dev
10
11
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
+COPY requirements-dev.txt /tmp
+RUN python -m pip install -r /tmp/requirements-dev.txt
14
CMD ["/bin/bash"]
0 commit comments