d95e4b3a6f
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
6 lines
176 B
Python
Executable File
6 lines
176 B
Python
Executable File
#!/bin/sh
|
|
set -e
|
|
rm -f machine_*
|
|
docker build -t docker-machine .
|
|
exec docker run --rm -v `pwd`:/go/src/github.com/docker/machine docker-machine gox -os="darwin linux windows"
|