docker-import: finish up Dockerfile provisioning, Add TODO for next section #774

This commit is contained in:
Matthew McKeen 2014-01-06 15:12:08 -08:00
parent 208b330b84
commit 00d3ee42e5
1 changed files with 69 additions and 30 deletions

View File

@ -67,6 +67,8 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (pac
id := artifact.Id() id := artifact.Id()
ui.Say("Importing image: " + id) ui.Say("Importing image: " + id)
// TODO Set artifact ID so that docker-push can use it
if p.config.Tag == "" { if p.config.Tag == "" {
cmd := exec.Command("docker", cmd := exec.Command("docker",
@ -142,40 +144,77 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (pac
// Process Dockerfile if provided // Process Dockerfile if provided
if p.config.Dockerfile != "" { if p.config.Dockerfile != "" {
cmd := exec.Command("docker", "build", id) if p.config.Tag != "" {
stdin, err := cmd.StdinPipe() cmd := exec.Command("docker", "build", "-t="+p.config.Repository+":"+p.config.Tag, "-")
if err != nil { stdin, err := cmd.StdinPipe()
return nil, false, err
if err != nil {
return nil, false, err
}
// open Dockerfile
file, err := os.Open(p.config.Dockerfile)
if err != nil {
ui.Say("Could not open Dockerfile: " + p.config.Dockerfile)
return nil, false, err
}
ui.Say(id)
defer file.Close()
if err := cmd.Start(); err != nil {
ui.Say("Failed to build image: " + id)
return nil, false, err
}
go func() {
io.Copy(stdin, file)
// close stdin so that program will exit
stdin.Close()
}()
cmd.Wait()
} else {
cmd := exec.Command("docker", "build", "-t="+p.config.Repository, "-")
stdin, err := cmd.StdinPipe()
if err != nil {
return nil, false, err
}
// open Dockerfile
file, err := os.Open(p.config.Dockerfile)
if err != nil {
ui.Say("Could not open Dockerfile: " + p.config.Dockerfile)
return nil, false, err
}
ui.Say(id)
defer file.Close()
if err := cmd.Start(); err != nil {
ui.Say("Failed to build image: " + id)
return nil, false, err
}
go func() {
io.Copy(stdin, file)
// close stdin so that program will exit
stdin.Close()
}()
cmd.Wait()
} }
// open Dockerfile
file, err := os.Open(p.config.Dockerfile)
if err != nil {
ui.Say("Could not open Dockerfile: " + p.config.Dockerfile)
return nil, false, err
}
defer file.Close()
if err := cmd.Start(); err != nil {
ui.Say("Failed to build image: " + id)
return nil, false, err
}
go func() {
io.Copy(stdin, file)
// close stdin so that program will exit
stdin.Close()
}()
cmd.Wait()
// TODO make sure we re-tag instead of create new image
// automatically use previous image as base of new image
} }
return nil, false, nil return nil, false, nil
} }