From 83f75759c695f67e9686a05b8ee2f361515f32df Mon Sep 17 00:00:00 2001 From: "Andrea F. Daniele" Date: Tue, 4 Aug 2020 17:49:01 -0500 Subject: [PATCH] Dockerfile: now copying only ./packages inside protected block --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 09d7098..b32ac7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,7 +59,7 @@ COPY ./dependencies-py3.txt "${REPO_PATH}/" RUN pip3 install -r ${REPO_PATH}/dependencies-py3.txt # copy the source code -COPY . "${REPO_PATH}/" +COPY ./packages "${REPO_PATH}/packages" # build packages RUN . /opt/ros/${ROS_DISTRO}/setup.sh && \