From f9026fa0e3ba0783ea2d56f5938d9ad25058457a Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 15 Apr 2024 07:04:41 +0300 Subject: [PATCH] Cleanup /tmp in image build --- builder/image-ros.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/image-ros.sh b/builder/image-ros.sh index 9079a9431..501542325 100755 --- a/builder/image-ros.sh +++ b/builder/image-ros.sh @@ -192,4 +192,7 @@ apt-get clean echo_stamp "Cleanup pip" pip3 cache purge +echo_stamp "Cleanup /tmp" +rm -rf /tmp/* + echo_stamp "END of ROS INSTALLATION"