Skip to content

Commit

Permalink
Fix pip install in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Apr 26, 2024
1 parent 7055768 commit 04a3219
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ WORKDIR /opt/pyrobosim/

# Install baseline pip dependencies
COPY test/python_test_requirements.txt test/
RUN pip3 install -r test/python_test_requirements.txt
RUN pip3 install --break-system-packages -r test/python_test_requirements.txt

# Install PDDLStream
COPY setup/setup_pddlstream.bash setup/
RUN setup/setup_pddlstream.bash

# Copy the rest of the source directory
COPY . /opt/pyrobosim/
RUN pip3 install -e pyrobosim
RUN pip3 install --break-system-packages -e pyrobosim

# Set the default startup command
CMD /bin/bash
Expand Down

0 comments on commit 04a3219

Please sign in to comment.