Merge pull request #16147 from tiborvass/refactor-builder

Refactor builder with new Go interfaces
This commit is contained in:
Brian Goff
2015-10-06 20:36:07 -04:00
94 changed files with 2246 additions and 1866 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ func (s *DockerSuite) TestBuildApiDockerfilePath(c *check.C) {
c.Fatal(err)
}
if !strings.Contains(string(out), "must be within the build context") {
if !strings.Contains(string(out), "Forbidden path outside the build context") {
c.Fatalf("Didn't complain about leaving build context: %s", out)
}
}
+1 -1
View File
@@ -18,7 +18,7 @@ import (
"text/template"
"time"
"github.com/docker/docker/builder/command"
"github.com/docker/docker/builder/dockerfile/command"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/stringutils"
"github.com/go-check/check"