Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Containerized Setup for Learn Environment Franka Emika Panda
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIT
AIFB
Betriebliche Informationssysteme
KIT-BIS
Robotik
ROS Learning Platform
Containerized Setup for Learn Environment Franka Emika Panda
Commits
2540ed35
Commit
2540ed35
authored
2 years ago
by
root
Browse files
Options
Downloads
Patches
Plain Diff
dockerfile angepasst
parent
208ead66
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.devcontainer/Dockerfile
+1
-5
1 addition, 5 deletions
.devcontainer/Dockerfile
.devcontainer/Dockerfile_core
+9
-22
9 additions, 22 deletions
.devcontainer/Dockerfile_core
with
10 additions
and
27 deletions
.devcontainer/Dockerfile
+
1
−
5
View file @
2540ed35
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/ubuntu/.devcontainer/base.Dockerfile
FROM
chillerrobot/ros-noetic-moveit-panda:first
FROM
chillerrobot/ros-noetic-moveit-panda:first
RUN
echo
"source ./catkin_ws/devel/setup.bash"
>>
~/.bashrc
RUN
echo
"source ./catkin_ws/devel/setup.bash"
>>
~/.bashrc
\ No newline at end of file
# install ros-noetic-effort-controllers
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.devcontainer/Dockerfile_core
+
9
−
22
View file @
2540ed35
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/ubuntu/.devcontainer/base.Dockerfile
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/ubuntu/.devcontainer/base.Dockerfile
FROM osrf/ros:noetic-desktop-full
FROM osrf/ros:noetic-desktop-full
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
dirmngr \
gnupg2
# [Optional] Uncomment this section to install additional OS packages.
# [Optional] Uncomment this section to install additional OS packages.
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends ros-noetic-franka-ros ros-noetic-moveit ros-noetic-effort-controllers git sudo nano python3-pip \
&& apt-get -y install --no-install-recommends ros-noetic-libfranka ros-noetic-franka-ros ros-noetic-moveit ros-noetic-effort-controllers git \
python3-scipy libprotobuf-dev protobuf-compiler libboost-all-dev \
build-essential python3-dev \
ros-noetic-convex-decomposition ros-noetic-ivcon \
ros-noetic-catkin python3-catkin-tools python3-osrf-pycommon python3-wstool python3-pip
git-core python3-wstool python3-vcstools python3-rosdep ros-noetic-control-msgs \
ros-noetic-xacro ros-noetic-tf2-ros ros-noetic-rviz ros-noetic-cv-bridge \
ros-noetic-actionlib ros-noetic-actionlib-msgs ros-noetic-dynamic-reconfigure ros-noetic-rosparam-shortcuts\
ros-noetic-trajectory-msgs ros-noetic-moveit \
ros-noetic-octomap-rviz-plugins \
ros-noetic-control-toolbox ros-noetic-catkin python3-catkin-tools \
ros-noetic-moveit-visual-tools \
ros-noetic-rospy-message-converter \
ros-noetic-realtime-tools ros-noetic-ros-controllers \
ros-noetic-tf-conversions ros-noetic-kdl-parser \
ros-noetic-ros-control ros-noetic-ros-controllers ros-noetic-gazebo-ros-control \
ros-noetic-libfranka python3-osrf-pycommon \
build-essential python3-dev swig python3-pygame
RUN pip3 install future numpy numpy-quaternion==2020.5.11.13.33.35 \
pygame decorator matplotlib Pillow scipy scikit-learn osrf-pycommon
RUN echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc
RUN echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc
RUN rosdep update
RUN rosdep update
RUN apt-get install -y --no-install-recommends ros-noetic-catkin python3-catkin-tools python3-osrf-pycommon python3-wstool python3-pip
RUN pip3 install future numpy numpy-quaternion==2020.5.11.13.33.35 \
pygame decorator matplotlib Pillow scipy scikit-learn osrf-pycommon
RUN mkdir -p ~/ws_moveit/src
RUN mkdir -p ~/ws_moveit/src
RUN cd ~/ws_moveit/src && wstool init . && wstool merge -t . https://raw.githubusercontent.com/ros-planning/moveit/master/moveit.rosinstall && wstool remove moveit_tutorials && wstool update -t .
RUN cd ~/ws_moveit/src && wstool init . && wstool merge -t . https://raw.githubusercontent.com/ros-planning/moveit/master/moveit.rosinstall && wstool remove moveit_tutorials && wstool update -t .
RUN cd ~/ws_moveit/src git clone https://github.com/ros-planning/moveit_tutorials.git -b master && rosdep install -y --from-paths . --ignore-src --rosdistro noetic && cd ~/ws_moveit && catkin config --extend /opt/ros/${ROS_DISTRO} --cmake-args -DCMAKE_BUILD_TYPE=Release && catkin build && echo 'source ~/ws_moveit/devel/setup.bash' >> ~/.bashrc
RUN cd ~/ws_moveit/src git clone https://github.com/ros-planning/moveit_tutorials.git -b master && rosdep install -y --from-paths . --ignore-src --rosdistro noetic && cd ~/ws_moveit && catkin config --extend /opt/ros/${ROS_DISTRO} --cmake-args -DCMAKE_BUILD_TYPE=Release && catkin build && echo 'source ~/ws_moveit/devel/setup.bash' >> ~/.bashrc
...
@@ -40,4 +26,5 @@ ENV NVIDIA_VISIBLE_DEVICES \
...
@@ -40,4 +26,5 @@ ENV NVIDIA_VISIBLE_DEVICES \
ENV NVIDIA_DRIVER_CAPABILITIES \
ENV NVIDIA_DRIVER_CAPABILITIES \
${NVIDIA_DRIVER_CAPABILITIES:+$NVIDIA_DRIVER_CAPABILITIES,}graphics
${NVIDIA_DRIVER_CAPABILITIES:+$NVIDIA_DRIVER_CAPABILITIES,}graphics
EXPOSE 6080/tcp
EXPOSE 6080/tcp
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment