From: John Mulligan Date: Thu, 2 Oct 2025 17:56:28 +0000 (-0400) Subject: Dockerfile.build: improve docker compatibility X-Git-Tag: testing/wip-jcollin-testing-20251107.050937-tentacle~14^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a628348e9677d6a9991129f47b4e7fa1427cc117;p=ceph-ci.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 (cherry picked from commit 8a9b6f84515030fd54cd3fc4e3a5bcb997872548) --- diff --git a/Dockerfile.build b/Dockerfile.build index 2f88042aef4..0586cdd37a4 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