added docker

This commit is contained in:
Niko Feith 2024-02-29 14:32:31 +01:00
parent a586ad83a2
commit 3f7a7f5984
3 changed files with 50 additions and 0 deletions

33
Dockerfile Normal file
View File

@ -0,0 +1,33 @@
# Use ROS 2 Humble Hawksbill base image
FROM osrf/ros:humble-desktop-full-jammy
# Update and install dependencies
RUN apt-get update && apt-get install -y \
python3-colcon-common-extensions python3-pip \
ros-humble-xacro
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Create a workspace
WORKDIR /ros2_ws
# Copy your ROS 2 package into the workspace
COPY ./src /ros2_ws/src
# get all the ros dependencies
RUN rosdep update && rosdep install --ignore-src --from-paths src -y
# remove unnecessary pkgs
RUN rm -rf /var/lib/apt/lists/*
# Build your package
RUN . /opt/ros/humble/setup.sh && \
colcon build
RUN echo "source /opt/ros/humble/setup.bash" >> ~/.bashrc
ENV PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/ros/humble/bin"
# Source the workspace
CMD ["/bin/bash"]

14
docker-compose.yaml Normal file
View File

@ -0,0 +1,14 @@
version: '3.8'
services:
ros2:
build: .
volumes:
- ./src:/ros2_ws/src
networks:
- ros_network
tty: true
stdin_open: true
networks:
ros_network:
driver: bridge

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
pytest~=6.2.5
PyYAML~=5.4.1
setuptools~=58.2.0