use drone-build container for running builds

This commit is contained in:
Brad Rydzewski 2015-05-05 01:06:31 -07:00
parent 204fba9018
commit 6fae6a56a1

View file

@ -33,10 +33,10 @@ var (
var (
// name of the build agent container.
DefaultAgent = "busybox"
DefaultAgent = "drone/drone-agent"
// default name of the build agent executable
DefaultEntrypoint = []string{"/bin/echo"} //[]string{"/bin/drone-agent"}
DefaultEntrypoint = []string{"/bin/drone-agent"}
// default argument to invoke build steps
DefaultBuildArgs = []string{"--build", "--clone", "--publish", "--deploy"}