Removed the "-i -t" arguments from the smoke test calling printf (these flags seem not really needed, and break jenkins builds with error "the input device is not a TTY")

Signed-off-by: Mickaël Remars <github@remars.com>
Upstream-commit: 2137e866b98d29f6a96df8a61c49f25a3ea2cb0d
Component: engine
This commit is contained in:
Mickaël Remars
2018-07-05 17:26:09 +02:00
parent aaa1925293
commit 8a5048081a

View File

@ -43,7 +43,7 @@ pack() {
id=$(tar --numeric-owner -C $ROOTFS -c . | docker import - alpine:$REL)
docker tag $id alpine:latest
docker run -i -t --rm alpine printf 'alpine:%s with id=%s created!\n' $REL $id
docker run --rm alpine printf 'alpine:%s with id=%s created!\n' $REL $id
}
save() {