Redefine a better interface for remote context dependency. Separate Dockerfile build instruction from remote context. Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com> Upstream-commit: d1faf3df27207af111daf4bd0191478c374dbc55 Component: engine
30 lines
585 B
Go
30 lines
585 B
Go
package remotecontext
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/docker/docker/builder"
|
|
"github.com/docker/docker/pkg/archive"
|
|
"github.com/docker/docker/pkg/gitutils"
|
|
)
|
|
|
|
// MakeGitContext returns a Context from gitURL that is cloned in a temporary directory.
|
|
func MakeGitContext(gitURL string) (builder.Source, error) {
|
|
root, err := gitutils.Clone(gitURL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
c, err := archive.Tar(root, archive.Uncompressed)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer func() {
|
|
// TODO: print errors?
|
|
c.Close()
|
|
os.RemoveAll(root)
|
|
}()
|
|
return MakeTarSumContext(c)
|
|
}
|