mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Extract two functions from the FROM dispatcher
This helps clarify the difference cases for parsing ctxName, and for getting an image. Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
700b4807c3
commit
4d62f67117
1 changed files with 54 additions and 43 deletions
|
@ -176,61 +176,26 @@ func dispatchCopy(b *Builder, args []string, attributes map[string]bool, origina
|
||||||
return b.runContextCommand(args, false, false, "COPY", im)
|
return b.runContextCommand(args, false, false, "COPY", im)
|
||||||
}
|
}
|
||||||
|
|
||||||
// FROM imagename
|
// FROM imagename[:tag | @digest] [AS build-stage-name]
|
||||||
//
|
|
||||||
// This sets the image the dockerfile will build on top of.
|
|
||||||
//
|
//
|
||||||
|
// from sets the base image
|
||||||
func from(b *Builder, args []string, attributes map[string]bool, original string) error {
|
func from(b *Builder, args []string, attributes map[string]bool, original string) error {
|
||||||
ctxName := ""
|
ctxName, err := parseBuildStageName(args)
|
||||||
if len(args) == 3 && strings.EqualFold(args[1], "as") {
|
if err != nil {
|
||||||
ctxName = strings.ToLower(args[2])
|
return err
|
||||||
if ok, _ := regexp.MatchString("^[a-z][a-z0-9-_\\.]*$", ctxName); !ok {
|
|
||||||
return errors.Errorf("invalid name for build stage: %q, name can't start with a number or contain symbols", ctxName)
|
|
||||||
}
|
|
||||||
} else if len(args) != 1 {
|
|
||||||
return errors.New("FROM requires either one or three arguments")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := b.flags.Parse(); err != nil {
|
if err := b.flags.Parse(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
substituionArgs := []string{}
|
|
||||||
for key, value := range b.buildArgs.GetAllMeta() {
|
|
||||||
substituionArgs = append(substituionArgs, key+"="+value)
|
|
||||||
}
|
|
||||||
|
|
||||||
name, err := ProcessWord(args[0], substituionArgs, b.escapeToken)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
var image builder.Image
|
|
||||||
|
|
||||||
b.resetImageCache()
|
b.resetImageCache()
|
||||||
if _, err := b.imageContexts.new(ctxName, true); err != nil {
|
if _, err := b.imageContexts.new(ctxName, true); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if im, ok := b.imageContexts.byName[name]; ok {
|
image, err := b.getFromImage(args[0])
|
||||||
if len(im.ImageID()) > 0 {
|
if err != nil {
|
||||||
image = im
|
return err
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Windows cannot support a container with no base image.
|
|
||||||
if name == api.NoBaseImageSpecifier {
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
return errors.New("Windows does not support FROM scratch")
|
|
||||||
}
|
|
||||||
b.image = ""
|
|
||||||
b.noBaseImage = true
|
|
||||||
} else {
|
|
||||||
var err error
|
|
||||||
image, err = pullOrGetImage(b, name)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if image != nil {
|
if image != nil {
|
||||||
b.imageContexts.update(image.ImageID(), image.RunConfig())
|
b.imageContexts.update(image.ImageID(), image.RunConfig())
|
||||||
|
@ -241,6 +206,52 @@ func from(b *Builder, args []string, attributes map[string]bool, original string
|
||||||
return b.processImageFrom(image)
|
return b.processImageFrom(image)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func parseBuildStageName(args []string) (string, error) {
|
||||||
|
stageName := ""
|
||||||
|
switch {
|
||||||
|
case len(args) == 3 && strings.EqualFold(args[1], "as"):
|
||||||
|
stageName = strings.ToLower(args[2])
|
||||||
|
if ok, _ := regexp.MatchString("^[a-z][a-z0-9-_\\.]*$", stageName); !ok {
|
||||||
|
return "", errors.Errorf("invalid name for build stage: %q, name can't start with a number or contain symbols", stageName)
|
||||||
|
}
|
||||||
|
case len(args) != 1:
|
||||||
|
return "", errors.New("FROM requires either one or three arguments")
|
||||||
|
}
|
||||||
|
|
||||||
|
return stageName, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Builder) getFromImage(name string) (builder.Image, error) {
|
||||||
|
substitutionArgs := []string{}
|
||||||
|
for key, value := range b.buildArgs.GetAllMeta() {
|
||||||
|
substitutionArgs = append(substitutionArgs, key+"="+value)
|
||||||
|
}
|
||||||
|
|
||||||
|
name, err := ProcessWord(name, substitutionArgs, b.escapeToken)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if im, ok := b.imageContexts.byName[name]; ok {
|
||||||
|
if len(im.ImageID()) > 0 {
|
||||||
|
return im, nil
|
||||||
|
}
|
||||||
|
// FROM scratch does not have an ImageID
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Windows cannot support a container with no base image.
|
||||||
|
if name == api.NoBaseImageSpecifier {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
return nil, errors.New("Windows does not support FROM scratch")
|
||||||
|
}
|
||||||
|
b.image = ""
|
||||||
|
b.noBaseImage = true
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return pullOrGetImage(b, name)
|
||||||
|
}
|
||||||
|
|
||||||
// ONBUILD RUN echo yo
|
// ONBUILD RUN echo yo
|
||||||
//
|
//
|
||||||
// ONBUILD triggers run when the image is used in a FROM statement.
|
// ONBUILD triggers run when the image is used in a FROM statement.
|
||||||
|
|
Loading…
Add table
Reference in a new issue