From 6fae6a56a14efd36cdc7eae8816ab661fd4af8ce Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Tue, 5 May 2015 01:06:31 -0700 Subject: [PATCH] use drone-build container for running builds --- runner/builtin/worker.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/builtin/worker.go b/runner/builtin/worker.go index 365b4c057..0f662d1be 100644 --- a/runner/builtin/worker.go +++ b/runner/builtin/worker.go @@ -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"}