Merge pull request #15954 from jfrazelle/no-t-install-script

we dont need the tty in the install script
This commit is contained in:
Jessie Frazelle 2015-08-31 08:45:35 -07:00
commit 3272b3d120
1 changed files with 1 additions and 1 deletions

View File

@ -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
}