1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

we dont need the tty in the install script

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-08-31 08:12:01 -07:00
parent 754d81bd69
commit 80c32162b5

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
}