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 <jmulligan@redhat.com>
(cherry picked from commit 8a9b6f8451)
This commit is contained in:
John Mulligan 2025-10-02 13:56:28 -04:00
parent 5f5335ffba
commit b53c769429

View File

@ -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