Skip to content

Commit

Permalink
jsk_spot_robot/coreio/bas/Dockerfile: install pip under system space …
Browse files Browse the repository at this point in the history
…using 'sudo -H pip3'
  • Loading branch information
k-okada committed Nov 20, 2024
1 parent 60b0800 commit 7908647
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jsk_spot_robot/coreio/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ COPY package.tar /tmp/
RUN tar -C /tmp/ws/ -xvf /tmp/package.tar

# install pip3 dependencies
RUN pip3 install pip==21.3.1
RUN pip3 install wrapt==1.12.1 six==1.15.0 PyJWT==2.0.0 numpy==1.19.4 grpcio==1.34.0
RUN sudo -H pip3 install pip==21.3.1
RUN sudo -H pip3 install wrapt==1.12.1 six==1.15.0 PyJWT==2.0.0 numpy==1.19.4 grpcio==1.34.0

# install python requirements
RUN pip3 install -r /tmp/ws/src/jsk_robot/jsk_spot_robot/requirements.txt
RUN sudo -H pip3 install -r /tmp/ws/src/jsk_robot/jsk_spot_robot/requirements.txt

# # rosdep install
# RUN sudo apt-get update && rosdep install -y -r --from-paths /tmp/ws/src --ignore-src --rosdistro melodic || echo "OK"
Expand Down

0 comments on commit 7908647

Please sign in to comment.