From 1ab81fcef05206eb37e3be432f67afd736f28e0d Mon Sep 17 00:00:00 2001 From: rafal-gorecki Date: Mon, 27 Nov 2023 12:10:29 +0100 Subject: [PATCH] fix sim --- Dockerfile.simulation | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.simulation b/Dockerfile.simulation index efcd365..f7c687f 100644 --- a/Dockerfile.simulation +++ b/Dockerfile.simulation @@ -18,6 +18,7 @@ COPY ./healthcheck.cpp / # install everything needed RUN MYDISTRO=${PREFIX:-ros}; MYDISTRO=${MYDISTRO//-/} && \ apt-get update --fix-missing && apt-get install -y \ + python3-pip \ ros-dev-tools && \ # Clone source source "/opt/$MYDISTRO/$ROS_DISTRO/setup.bash" && \ @@ -46,8 +47,7 @@ RUN MYDISTRO=${PREFIX:-ros}; MYDISTRO=${MYDISTRO//-/} && \ export SUDO_FORCE_REMOVE=yes && \ apt-get remove -y \ python3-pip \ - ros-dev-tools \ - curl && \ + ros-dev-tools && \ apt-get autoremove -y && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*