diff --git a/components/gitpod-cli/cmd/validate.go b/components/gitpod-cli/cmd/validate.go index a9b286ca39d56b..cb98411bc32cd2 100644 --- a/components/gitpod-cli/cmd/validate.go +++ b/components/gitpod-cli/cmd/validate.go @@ -92,6 +92,9 @@ func runRebuild(ctx context.Context, supervisorClient *supervisor.SupervisorClie if err != nil { return err } + if image == "" { + image = "gitpod/workspace-full:latest" + } fmt.Println("Using default workspace image:", image) case string: image = img