Skip to content

Commit

Permalink
Allow Dockerfile to use local requirements.txt (#57904)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Mar 19, 2024
1 parent 594466a commit b3b70a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ RUN apt-get install -y build-essential
RUN apt-get install -y libhdf5-dev libgles2-mesa-dev

RUN python -m pip install --upgrade pip
RUN python -m pip install \
-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
CMD ["/bin/bash"]

0 comments on commit b3b70a9

Please sign in to comment.