-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit reverts to the old ci dockerfile since the new one sometimes casues a `no space left on device` error.
- Loading branch information
Showing
4 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
FROM osrf/ros:noetic-desktop-full | ||
|
||
# Install system dependencies. | ||
# Install system dependencies + preknown ROS dependencies. | ||
# NOTE: dependencies are found using the `rosdep install --from-path src --ignore-src -r -y --simulate --reinstall .` command. | ||
RUN apt-get update && apt-get install -y \ | ||
libgtest-dev \ | ||
ros-noetic-libfranka \ | ||
libeigen3-dev \ | ||
python3-pip \ | ||
python3-numpy \ | ||
python3-catkin-pkg \ | ||
python3-catkin-tools \ | ||
python3-setuptools \ | ||
python3-pygit2 \ | ||
python3-ruamel.yaml \ | ||
python3-tqdm \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Copy the source code into the container. | ||
WORKDIR /ros_gazebo_gym_ws | ||
COPY . /ros_gazebo_gym_ws/src | ||
|
||
# Install ROS dependencies. | ||
RUN apt-get update && \ | ||
rosdep update && \ | ||
rosdep install --reinstall --from-path src --ignore-src -r -y && \ | ||
rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ros-gazebo-gym
updated
6 files
+0 −1 | .ci/Dockerfile.noetic | |
+4 −4 | package-lock.json | |
+2 −2 | package.json | |
+1 −1 | rosdep/19-ros-gazebo-gym.list | |
+1 −1 | rosdep/README.md | |
+14 −9 | src/ros_gazebo_gym/core/helpers.py |