From c59d02a64c1362858d727b299d854c23eab8b979 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Mon, 8 Jun 2015 09:09:09 -0700 Subject: [PATCH] switch to alpine linux container as ambassador so that we re-use layers --- cmd/drone-build/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/drone-build/client.go b/cmd/drone-build/client.go index b0d7ce03..02d4e413 100644 --- a/cmd/drone-build/client.go +++ b/cmd/drone-build/client.go @@ -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)