switch to alpine linux container as ambassador so that we re-use layers

This commit is contained in:
Brad Rydzewski 2015-06-08 09:09:09 -07:00
parent b00b46914d
commit c59d02a64c

View file

@ -46,7 +46,7 @@ func newClient(docker dockerclient.Client) (*client, error) {
conf.HostConfig = dockerclient.HostConfig{}
conf.Entrypoint = []string{"/bin/sleep"}
conf.Cmd = []string{"86400"}
conf.Image = "busybox"
conf.Image = "gliderlabs/alpine:3.1"
conf.Volumes = map[string]struct{}{}
conf.Volumes["/drone"] = struct{}{}
info, err := daemon(docker, conf, false)