From 84ae9432a1391bd11e081548754d732f98bc2957 Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Wed, 17 Mar 2021 13:12:09 -0400 Subject: [PATCH] ceph-debug-docker: podman build doesn't accept input via stdin podman on centos 8 at least doesn't accept the Dockerfile being fed to it via stdin. Change that branch of the script to use the same method that the ubuntu side does. This gets the script working on senta03 for me. Signed-off-by: Jeff Layton --- src/script/ceph-debug-docker.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index 42eaf535b9c4d..bac583b22c8af 100755 --- a/src/script/ceph-debug-docker.sh +++ b/src/script/ceph-debug-docker.sh @@ -115,7 +115,7 @@ EOF if [ "${FLAVOR}" = "crimson" ]; then ceph_debuginfo+=" ceph-crimson-osd-debuginfo ceph-crimson-osd" fi - time run docker build $CACHE --tag "$tag" - < Dockerfile <