git commit -m "first commit"

This commit is contained in:
2026-05-28 10:29:58 +07:00
commit 167c52aeb6
2048 changed files with 740251 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
FROM ros:kinetic-ros-core
RUN apt-get update \
&& apt-get install -y build-essential python-rosdep cmake \
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*
RUN rosdep init && rosdep update --include-eol-distros
# Create ROS workspace
COPY . /ws/src/rospy_message_converter
WORKDIR /ws
# Install the package and its dependencies
RUN rosdep install --from-paths src --ignore-src --rosdistro kinetic -y
# Set up the development environment
RUN /bin/bash -c "source /opt/ros/kinetic/setup.bash && \
catkin_make install"