加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile-noetic 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
Martin Günther 提交于 2022-04-05 18:15 . Add Dockerfile-noetic
FROM ros:noetic-ros-core
RUN apt-get update \
&& apt-get install -y build-essential python3-catkin-tools python3-rosdep cmake \
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*
# Create ROS workspace
COPY . /ws/src/sick_tim
WORKDIR /ws
# Use rosdep to install all dependencies (including ROS itself)
RUN rosdep init && rosdep update && rosdep install --from-paths src -i -y --rosdistro noetic
RUN /bin/bash -c "source /opt/ros/noetic/setup.bash && \
catkin init && \
catkin config --install -j 1 -p 1 && \
catkin build --limit-status-rate 0.1 --no-notify && \
catkin build --limit-status-rate 0.1 --no-notify --make-args tests"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化