added docker
This commit is contained in:
parent
a586ad83a2
commit
3f7a7f5984
33
Dockerfile
Normal file
33
Dockerfile
Normal 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
14
docker-compose.yaml
Normal 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
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
||||
pytest~=6.2.5
|
||||
PyYAML~=5.4.1
|
||||
setuptools~=58.2.0
|
Loading…
Reference in New Issue
Block a user