use new image as base of next command

This commit is contained in:
Nate Jones 2013-04-25 08:08:05 -07:00 коммит произвёл Guillaume J. Charmes
Родитель ff95f2b0ec
Коммит 74b9e851f6
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -187,6 +187,10 @@ func (builder *Builder) Build(dockerfile io.Reader, stdout io.Writer) error {
tmpImages[base.Id] = struct{}{}
fmt.Fprintf(stdout, "===> %s\n", base.ShortId())
// use the base as the new image
image = base
break
case "copy":
if image == nil {