Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 24 additions & 4 deletions ubuntu_24/dqrobotics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,37 @@ FROM ubuntu:noble
SHELL ["/bin/bash", "-c"]
ENV BASH_ENV="/etc/bash_env"

# Update apt-get
RUN sudo apt-get update -q \
&& sudo apt-get upgrade -y \
&& sudo apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install dependencies for development
RUN apt-get update && apt-get install -y net-tools iputils-ping \
git nss-updatedb locate curl libpci3 vim nano terminator \
cmake extra-cmake-modules g++ fakeroot software-properties-common && apt-get clean && \
RUN apt-get update && \
apt-get install -y net-tools \
iputils-ping \
git \
nss-updatedb \
locate \
curl \
libpci3 \
vim \
nano \
terminator \
cmake \
extra-cmake-modules \
g++ \
fakeroot \
software-properties-common \
&& apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Clone docker_recipes
RUN mkdir -p ~/git/
RUN cd ~/git/ && git clone https://github.com/Adorno-Lab/docker_recipes.git --recursive


# Install DQ Robotics
RUN chmod +x ~/git/docker_recipes/dependencies/install_dqrobotics.sh
RUN bash -c '~/git/docker_recipes/dependencies/install_dqrobotics.sh'
Expand Down
11 changes: 6 additions & 5 deletions ubuntu_24/dqrobotics_ros_jazzy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
FROM juanjqo/ubuntu_24_dqrobotics
ARG ROS_DOMAIN_ID=1
ENV ROS_DOMAIN_ID=$ROS_DOMAIN_ID
SHELL ["/bin/bash", "-c"]
ENV BASH_ENV="/etc/bash_env"

# Update apt-get
RUN sudo apt-get update -q \
&& sudo apt-get upgrade -y \
&& sudo apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install ROS2 Jazzy.
RUN chmod +x ~/git/docker_recipes/dependencies/install_ros_jazzy.sh
RUN bash -c '~/git/docker_recipes/dependencies/install_ros_jazzy.sh'

# ROS DOMAIN SETUP
RUN echo "export ROS_DOMAIN_ID=$ROS_DOMAIN_ID" >> ~/.bashrc
17 changes: 0 additions & 17 deletions ubuntu_24/dqrobotics_ros_jazzy_sas/Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions ubuntu_24/dqrobotics_ros_jazzy_sas/README.md

This file was deleted.

Loading