Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Development_Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Montaño Sarria, Andres Felipe
Development_Environment
Commits
99b5ea99
Commit
99b5ea99
authored
1 year ago
by
Montaño Sarria, Andres Felipe
Browse files
Options
Downloads
Patches
Plain Diff
Add support for libpcan
parent
caa0bcf3
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
dockerfiles/devenv.Dockerfile
+134
-118
134 additions, 118 deletions
dockerfiles/devenv.Dockerfile
with
134 additions
and
118 deletions
dockerfiles/devenv.Dockerfile
+
134
−
118
View file @
99b5ea99
...
...
@@ -21,6 +21,7 @@ RUN apt-get update && apt-get -y install --no-install-recommends \
apt-transport-https
\
ca-certificates
\
curl
\
dbus-x11
\
gnupg-agent
\
software-properties-common
\
dialog 2>&1
\
...
...
@@ -107,7 +108,11 @@ RUN sh -c "echo 'yaml https://git.code.tecnalia.com/tecnalia_robotics-public/git
# Install pip3 and packages
RUN
apt-get
install
-y
\
python3-pip
\
&&
pip3
install
sqlite_utils
&&
pip3
install
sqlite_utils
\
&&
pip3
install
conan
==
1.59
\
&&
conan config
set
general.revisions_enabled
=
1
\
&&
conan profile new default
--detect
>
/dev/null
\
&&
conan profile update settings.compiler
=
gcc default
# Install node for UIs
RUN
curl
-sL
https://deb.nodesource.com/setup_14.x |
sudo
-E
bash
\
...
...
@@ -154,6 +159,7 @@ RUN if [ "${ROS_DISTRO}" != "humble" ]; \
ros-
${
ROS_DISTRO
}
-moveit-planners-ompl
\
ros-
${
ROS_DISTRO
}
-moveit-resources
\
ros-
${
ROS_DISTRO
}
-moveit-ros-benchmarks
\
ros-
${
ROS_DISTRO
}
-moveit-ros-control-interface
\
ros-
${
ROS_DISTRO
}
-moveit-ros-move-group
\
ros-
${
ROS_DISTRO
}
-moveit-ros-planning-interface
\
ros-
${
ROS_DISTRO
}
-moveit-ros-visualization
\
...
...
@@ -171,6 +177,7 @@ RUN if [ "${ROS_DISTRO}" != "humble" ]; \
ros-
${
ROS_DISTRO
}
-ros-control
\
ros-
${
ROS_DISTRO
}
-ros-control-boilerplate
\
ros-
${
ROS_DISTRO
}
-ros-controllers
\
ros-
${
ROS_DISTRO
}
-ros-industrial-cmake-boilerplate
\
ros-
${
ROS_DISTRO
}
-rosbridge-server
\
ros-
${
ROS_DISTRO
}
-scaled-joint-trajectory-controller
\
ros-
${
ROS_DISTRO
}
-serial
\
...
...
@@ -186,6 +193,11 @@ RUN if [ "${ROS_DISTRO}" != "humble" ]; \
ros-
${
ROS_DISTRO
}
-usb-cam
\
ros-
${
ROS_DISTRO
}
-velocity-controllers
\
ros-
${
ROS_DISTRO
}
-warehouse-ros-mongo
;
\
# ROS2 Humble dpendencies
else \
apt-get -y install \
ros-${ROS_DISTRO}-moveit \
ros-${ROS_DISTRO}-ros2-control; \
fi
RUN if
[
"
${
ROS_DISTRO
}
"
=
"noetic"
]
;
\
...
...
@@ -195,7 +207,9 @@ RUN if [ "${ROS_DISTRO}" = "noetic" ]; \
python-is-python3
\
python3-catkin-tools
\
python3-click
\
ros-
${
ROS_DISTRO
}
-libpcan
\
python3-numpy
\
python3-tk
\
python3-osrf-pycommon
;
\
elif
[
"
${
ROS_DISTRO
}
"
=
"melodic"
]
;
\
then
\
...
...
@@ -230,11 +244,13 @@ RUN rm -rf *
RUN
apt-get
--reinstall
install
-y
libnotify-bin notify-osd
# Update this date to re-run the image final update
LABEL
image.date=
03
-0
2
-2023
LABEL
image.date=
24
-0
8
-2023
# Update final image
RUN
apt-get update
\
&&
apt-get
-y
upgrade
&&
apt-get
-y
upgrade
\
&&
apt-get
-y
autoremove
\
&&
apt-get
-y
autoclean
# Set entrypoint
COPY
./ros_entrypoint.sh /
...
...
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