From: John Mulligan Date: Thu, 2 Oct 2025 17:56:28 +0000 (-0400) Subject: Dockerfile.build: improve docker compatibility X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F65760%2Fhead;p=ceph.git Dockerfile.build: improve docker compatibility Try to fix: ``` Step 6/18 : COPY ceph.spec.in do_cmake.sh install-deps.sh run-make-check.sh src/script/buildcontainer-setup.sh ${CEPH_CTR_SRC} When using COPY with more than one source file, the destination must be a directory and end with a / ``` Signed-off-by: John Mulligan --- diff --git a/Dockerfile.build b/Dockerfile.build index d75ebdfa04a..95f7831cbdf 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -13,7 +13,7 @@ COPY \ install-deps.sh \ run-make-check.sh \ src/script/buildcontainer-setup.sh \ - ${CEPH_CTR_SRC} + ${CEPH_CTR_SRC}/ FROM $DISTRO