From 8a9b6f84515030fd54cd3fc4e3a5bcb997872548 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 2 Oct 2025 13:56:28 -0400 Subject: [PATCH] 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 --- Dockerfile.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.build b/Dockerfile.build index d75ebdfa04a33..95f7831cbdf18 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 -- 2.39.5