diff --git a/pkg/commands/commands.go b/pkg/commands/commands.go index 08fa3ceb1..0c4eef17d 100644 --- a/pkg/commands/commands.go +++ b/pkg/commands/commands.go @@ -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()) }