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/*