From 33cc8b3ea08da5e8eef0d3e95db8eadf99db8bbe Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 22 Nov 2023 07:14:52 +0100 Subject: [PATCH] Install can-utils and clone dev branch. --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 236beae..78c0edb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM docker.io/arm64v8/ros:humble-ros-base +RUN apt update && apt install can-utils + WORKDIR /tmp RUN git clone https://github.com/gsl-lite/gsl-lite && cd gsl-lite && \ @@ -20,7 +22,9 @@ RUN git clone https://github.com/fmtlib/fmt && cd fmt && \ RUN mkdir -p /tmp/colcon_ws/src WORKDIR /tmp/colcon_ws/src -RUN git clone --recursive https://github.com/107-systems/t07_robot +RUN git clone --recursive https://github.com/107-systems/t07_robot && \ + cd t07_robot && \ + git checkout dev WORKDIR /tmp/colcon_ws RUN . /opt/ros/humble/setup.sh && \