]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Dockerfile.build: improve docker compatibility 65760/head
authorJohn Mulligan <jmulligan@redhat.com>
Thu, 2 Oct 2025 17:56:28 +0000 (13:56 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Thu, 2 Oct 2025 17:57:27 +0000 (13:57 -0400)
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>
Dockerfile.build

index d75ebdfa04a331393eb675c7543eaa6cb2a78a7d..95f7831cbdf18021f77e61de0291f15288eb9259 100644 (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