-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed rocker and now handling everything manually (good luck) * Minor fix regarding permissions * Using the official opengl supported nvidia container for each ubuntu version * Fixed the integrated graphics parameter * Fixed initial ros version, which was always using melodic
- Loading branch information
1 parent
dda136f
commit 478c0a0
Showing
8 changed files
with
106 additions
and
81 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
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
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
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,3 +1,11 @@ | ||
FROM nvidia/opengl:1.2-glvnd-devel-ubuntu22.04 as nvidia | ||
|
||
FROM osrf/ros:humble-desktop-full | ||
|
||
COPY --from=nvidia /usr/local /usr/local | ||
|
||
ENV NVIDIA_VISIBLE_DEVICES=all NVIDIA_DRIVER_CAPABILITIES=all | ||
|
||
FROM osrf/ros:humble-desktop-full | ||
|
||
LABEL maintainer="George Stavrinos <[email protected]>" | ||
|
@@ -42,18 +50,18 @@ RUN addgroup --gid $GROUP_ID rosez_user && adduser --disabled-password --gecos ' | |
USER rosez_user | ||
RUN sudo chown -R rosez_user:rosez_user /home/rosez_user && rosdep update | ||
|
||
VOLUME /opt/ros/humble | ||
VOLUME /bin | ||
VOLUME /etc | ||
VOLUME /home | ||
VOLUME /lib | ||
VOLUME /lib64 | ||
VOLUME /mnt | ||
VOLUME /opt | ||
VOLUME /root | ||
VOLUME /run | ||
VOLUME /sbin | ||
VOLUME /srv | ||
VOLUME /sys | ||
VOLUME /usr | ||
VOLUME /var | ||
VOLUME /opt/ros/humble\ | ||
/bin\ | ||
/etc\ | ||
/home\ | ||
/lib\ | ||
/lib64\ | ||
/mnt\ | ||
/opt\ | ||
/root\ | ||
/run\ | ||
/sbin\ | ||
/srv\ | ||
/sys\ | ||
/usr\ | ||
/var |
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,3 +1,11 @@ | ||
FROM nvidia/opengl:1.2-glvnd-devel-ubuntu20.04 as nvidia | ||
|
||
FROM osrf/ros:foxy-ros1-bridge | ||
|
||
COPY --from=nvidia /usr/local /usr/local | ||
|
||
ENV NVIDIA_VISIBLE_DEVICES=all NVIDIA_DRIVER_CAPABILITIES=all | ||
|
||
FROM osrf/ros:foxy-ros1-bridge | ||
|
||
LABEL maintainer="George Stavrinos <[email protected]>" | ||
|
@@ -43,18 +51,18 @@ RUN addgroup --gid $GROUP_ID rosez_user && adduser --disabled-password --gecos ' | |
USER rosez_user | ||
RUN sudo chown -R rosez_user:rosez_user /home/rosez_user && rosdep update | ||
|
||
VOLUME /opt/ros/foxy | ||
VOLUME /bin | ||
VOLUME /etc | ||
VOLUME /home | ||
VOLUME /lib | ||
VOLUME /lib64 | ||
VOLUME /mnt | ||
VOLUME /opt | ||
VOLUME /root | ||
VOLUME /run | ||
VOLUME /sbin | ||
VOLUME /srv | ||
VOLUME /sys | ||
VOLUME /usr | ||
VOLUME /var | ||
VOLUME /opt/ros/foxy\ | ||
/bin\ | ||
/etc\ | ||
/home\ | ||
/lib\ | ||
/lib64\ | ||
/mnt\ | ||
/opt\ | ||
/root\ | ||
/run\ | ||
/sbin\ | ||
/srv\ | ||
/sys\ | ||
/usr\ | ||
/var |
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,3 +1,11 @@ | ||
FROM nvidia/opengl:1.2-glvnd-devel-ubuntu20.04 as nvidia | ||
|
||
FROM osrf/ros:noetic-desktop-full | ||
|
||
COPY --from=nvidia /usr/local /usr/local | ||
|
||
ENV NVIDIA_VISIBLE_DEVICES=all NVIDIA_DRIVER_CAPABILITIES=all | ||
|
||
FROM osrf/ros:noetic-desktop-full | ||
|
||
LABEL maintainer="George Stavrinos <[email protected]>" | ||
|
@@ -40,18 +48,18 @@ RUN addgroup --gid $GROUP_ID rosez_user && adduser --disabled-password --gecos ' | |
USER rosez_user | ||
RUN sudo chown -R rosez_user:rosez_user /home/rosez_user && rosdep update | ||
|
||
VOLUME /opt/ros/noetic | ||
VOLUME /bin | ||
VOLUME /etc | ||
VOLUME /home | ||
VOLUME /lib | ||
VOLUME /lib64 | ||
VOLUME /mnt | ||
VOLUME /opt | ||
VOLUME /root | ||
VOLUME /run | ||
VOLUME /sbin | ||
VOLUME /srv | ||
VOLUME /sys | ||
VOLUME /usr | ||
VOLUME /var | ||
VOLUME /opt/ros/noetic\ | ||
/bin\ | ||
/etc\ | ||
/home\ | ||
/lib\ | ||
/lib64\ | ||
/mnt\ | ||
/opt\ | ||
/root\ | ||
/run\ | ||
/sbin\ | ||
/srv\ | ||
/sys\ | ||
/usr\ | ||
/var |
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,5 +1,11 @@ | ||
FROM nvidia/opengl:1.2-glvnd-devel-ubuntu18.04 as nvidia | ||
|
||
FROM osrf/ros:melodic-desktop-full | ||
|
||
COPY --from=nvidia /usr/local /usr/local | ||
|
||
ENV NVIDIA_VISIBLE_DEVICES=all NVIDIA_DRIVER_CAPABILITIES=all | ||
|
||
LABEL maintainer="George Stavrinos <[email protected]>" | ||
|
||
RUN mkdir -p /opt/ros/catkin_ws/src && apt-get update && apt-get full-upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
|
@@ -40,18 +46,18 @@ RUN addgroup --gid $GROUP_ID rosez_user && adduser --disabled-password --gecos ' | |
USER rosez_user | ||
RUN sudo chown -R rosez_user:rosez_user /home/rosez_user && rosdep update | ||
|
||
VOLUME /opt/ros/melodic | ||
VOLUME /bin | ||
VOLUME /etc | ||
VOLUME /home | ||
VOLUME /lib | ||
VOLUME /lib64 | ||
VOLUME /mnt | ||
VOLUME /opt | ||
VOLUME /root | ||
VOLUME /run | ||
VOLUME /sbin | ||
VOLUME /srv | ||
VOLUME /sys | ||
VOLUME /usr | ||
VOLUME /var | ||
VOLUME /opt/ros/melodic\ | ||
/bin\ | ||
/etc\ | ||
/home\ | ||
/lib\ | ||
/lib64\ | ||
/mnt\ | ||
/opt\ | ||
/root\ | ||
/run\ | ||
/sbin\ | ||
/srv\ | ||
/sys\ | ||
/usr\ | ||
/var |
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