adding user command to switch

This commit is contained in:
sharifelgamal 2018-03-29 11:54:51 -07:00
parent bc78e2b838
commit b315cf1049
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ func GetCommand(cmd instructions.Command, buildcontext string) (DockerCommand, e
return &EntrypointCommand{cmd: c}, nil
case *instructions.LabelCommand:
return &LabelCommand{cmd: c}, nil
case *instructions.UserCommand:
return &UserCommand{cmd: c}, nil
}
return nil, errors.Errorf("%s is not a supported command", cmd.Name())
}