1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix image pipe with Builder COPY

This commit is contained in:
Guillaume J. Charmes 2013-04-27 21:45:05 -07:00
parent e337949cb0
commit 4390a3182f

View file

@ -235,6 +235,9 @@ func (builder *Builder) Build(dockerfile io.Reader, stdout io.Writer) (*Image, e
return nil, err
}
fmt.Fprintf(stdout, "===> %s\n", base.ShortId())
image = base
break
default:
fmt.Fprintf(stdout, "Skipping unknown op %s\n", tmp[0])