From 26532890c06c9b349bbec7393e3dcc680181b715 Mon Sep 17 00:00:00 2001 From: Bill Wang Date: Thu, 3 Oct 2024 13:43:11 +1000 Subject: [PATCH] test with Github action --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 9715ccc..4cf0a92 100755 --- a/test.sh +++ b/test.sh @@ -5,5 +5,5 @@ image=${1:-latest} for platform in linux/amd64 linux/arm/v7 linux/arm64/v8 linux/arm/v6 linux/ppc64le linux/s390x linux/386 do echo "Platfom is $platform" - docker run --rm -ti --platform "${platform}" --entrypoint=sh ${image} -c "uname -m" + docker run --rm -i --platform "${platform}" --entrypoint=sh ${image} -c "uname -m" done