From 087b1524da680099786c4cb191b03697c551df9e Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 6 Jul 2023 13:45:28 -0700 Subject: [PATCH] Make both test builds run actual containers --- test-debs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-debs.sh b/test-debs.sh index 2d6509c..933c46b 100755 --- a/test-debs.sh +++ b/test-debs.sh @@ -59,9 +59,9 @@ cat <<-'EOBASH' docker run --rm hello-world docker run --rm --init hello-world - printf 'FROM hello-world' | DOCKER_BUILDKIT=0 docker build --pull - + printf 'FROM hello-world\nRUN ["/hello"]' | DOCKER_BUILDKIT=0 docker build --pull - - printf 'FROM hello-world' | docker buildx build --pull - + printf 'FROM hello-world\nRUN ["/hello"]' | docker buildx build --pull - docker images EOBASH