зеркало из https://github.com/microsoft/docker.git
Shallow clone using git to build images.
Signed-off-by: David Calavera <david.calavera@gmail.com>
This commit is contained in:
Родитель
c4914f071f
Коммит
36fbf4b864
|
@ -114,7 +114,7 @@ func Build(d *daemon.Daemon, buildConfig *Config) error {
|
|||
}
|
||||
defer os.RemoveAll(root)
|
||||
|
||||
if output, err := exec.Command("git", "clone", "--recursive", buildConfig.RemoteURL, root).CombinedOutput(); err != nil {
|
||||
if output, err := exec.Command("git", "clone", "--depth", "1", "--recursive", buildConfig.RemoteURL, root).CombinedOutput(); err != nil {
|
||||
return fmt.Errorf("Error trying to use git: %s (%s)", err, output)
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче