From 6121b98b71f3f10c4c78dfd964c3bdb6f9a375bd Mon Sep 17 00:00:00 2001 From: HiroIshida Date: Fri, 17 Nov 2023 21:08:02 +0900 Subject: [PATCH] fix: always install jsk_pcl_ros --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 20dd881..3f9086e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,3 @@ -ARG INSTALL_JSK_PCL=true FROM nvidia/cuda:11.2.2-runtime-ubuntu20.04 ENV DEBIAN_FRONTEND=noninteractive RUN rm /etc/apt/sources.list.d/cuda.list @@ -68,9 +67,7 @@ RUN apt update && apt install ros-noetic-jsk-tools -y RUN apt update && apt install ros-noetic-image-transport-plugins -y # install launch/sample_detection.launch dependencies if you work with point clouds -RUN if [ "$INSTALL_ROS_JSK" = "true" ]; then \ - apt-get update && apt-get install -y ros-noetic-jsk-pcl-ros ros-noetic-jsk-pcl-ros-utils; \ -fi +RUN apt-get update && apt-get install -y ros-noetic-jsk-pcl-ros ros-noetic-jsk-pcl-ros-utils WORKDIR /home/user