Browse code

we dont need the tty in the install script

Signed-off-by: Jessica Frazelle <acidburn@docker.com>

Jessica Frazelle authored on 2015/09/01 00:12:01
Showing 1 changed files
... ...
@@ -21,7 +21,7 @@ test_install_script(){
21 21
 			local from="$(awk 'toupper($1) == "FROM" { print $2; exit }' "$dir/Dockerfile")"
22 22
 
23 23
 			echo "running install.sh for ${component} with ${from}"
24
-			docker run --rm -it -v ${script}:/install.sh ${from} /install.sh
24
+			docker run --rm -i -v ${script}:/install.sh ${from} /install.sh
25 25
 		done
26 26
 	done
27 27
 }