1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 10:39:25 +02:00

Don't force tty on docker run in mkimage-alpine, it screws up the

builder.
This commit is contained in:
Simo Kinnunen 2016-02-24 23:45:13 +09:00
parent 1cda2a01ab
commit b35b5f8f21

View file

@ -46,7 +46,7 @@ conf() {
pack() { pack() {
local id local id
id=$(tar --numeric-owner -C $ROOTFS -c . | docker import - $IMAGE) id=$(tar --numeric-owner -C $ROOTFS -c . | docker import - $IMAGE)
docker run -i -t --rm $IMAGE printf '%s with id=%s created!\n' $IMAGE $id docker run -i --rm $IMAGE printf '%s with id=%s created!\n' $IMAGE $id
} }
save() { save() {