Skip to content

chore(container): update default builder image for container deploy #4692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions cmd/scw/testdata/test-all-usage-container-deploy-usage.golden
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ USAGE:
scw container deploy [arg=value ...]

ARGS:
[name] Name of the application (defaults to build-source's directory name)
[builder=paketobuildpacks/builder:base] Builder image to use
[dockerfile=Dockerfile] Path to the Dockerfile
[force-builder=false] Force the use of the builder image (even if a Dockerfile is present)
[build-source=.] Path to the build context
[cache=true] Use cache when building the image
[build-args.{key}] Build-time variables
[port=8080] Port to expose
[namespace-id] Container Namespace ID to deploy to
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all)
[name] Name of the application (defaults to build-source's directory name)
[builder=paketobuildpacks/builder-jammy-base:latest] Builder image to use
[dockerfile=Dockerfile] Path to the Dockerfile
[force-builder=false] Force the use of the builder image (even if a Dockerfile is present)
[build-source=.] Path to the build context
[cache=true] Use cache when building the image
[build-args.{key}] Build-time variables
[port=8080] Port to expose
[namespace-id] Container Namespace ID to deploy to
[region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all)

FLAGS:
-h, --help help for deploy
Expand Down
2 changes: 1 addition & 1 deletion docs/commands/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ scw container deploy [arg=value ...]
| Name | | Description |
|------|---|-------------|
| name | | Name of the application (defaults to build-source's directory name) |
| builder | Default: `paketobuildpacks/builder:base` | Builder image to use |
| builder | Default: `paketobuildpacks/builder-jammy-base:latest` | Builder image to use |
| dockerfile | Default: `Dockerfile` | Path to the Dockerfile |
| force-builder | Default: `false` | Force the use of the builder image (even if a Dockerfile is present) |
| build-source | Default: `.` | Path to the build context |
Expand Down
2 changes: 1 addition & 1 deletion internal/namespaces/container/v1beta1/custom_deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func containerDeployCommand() *core.Command {
{
Name: "builder",
Short: "Builder image to use",
Default: core.DefaultValueSetter("paketobuildpacks/builder:base"),
Default: core.DefaultValueSetter("paketobuildpacks/builder-jammy-base:latest"),
},
{
Name: "dockerfile",
Expand Down
Loading
Loading