From ee4aaae33c2152bba67949f4d412c9e36d2f5533 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Mon, 31 Aug 2015 08:12:01 -0700 Subject: [PATCH] we dont need the tty in the install script Signed-off-by: Jessica Frazelle Upstream-commit: 80c32162b5e99e1237a31cead3774474407fe0cf Component: engine --- components/engine/hack/make/test-install-script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/hack/make/test-install-script b/components/engine/hack/make/test-install-script index e32c42d873..a5ea41693e 100755 --- a/components/engine/hack/make/test-install-script +++ b/components/engine/hack/make/test-install-script @@ -21,7 +21,7 @@ test_install_script(){ local from="$(awk 'toupper($1) == "FROM" { print $2; exit }' "$dir/Dockerfile")" echo "running install.sh for ${component} with ${from}" - docker run --rm -it -v ${script}:/install.sh ${from} /install.sh + docker run --rm -i -v ${script}:/install.sh ${from} /install.sh done done }