You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating a builder image to use paketo builder tiny stack, but I have this error:
ERROR: validating buildpacks: buildpack paketo-buildpacks/nginx@0.15.3 does not support stack io.buildpacks.stacks.jammy.tiny
Expected Behavior
It should to allow create builder image.
Current Behavior
It is giving this error:
ERROR: validating buildpacks: buildpack paketo-buildpacks/nginx@0.15.3 does not support stack io.buildpacks.stacks.jammy.tiny
Possible Solution
I think in the tiny jammy stack it should be added libraries or packages to support buildpack nginx@0.15.3
Add into of builder.toml
[[buildpacks]]
uri = "docker://gcr.io/paketo-buildpacks/nginx:0.15.3"
version = "0.15.3"
An when you want to create an own builder with pack cli, it should can to create this new builder custom, with the command:
pack builder create custom_tiny_jammy --config ./builder.toml
Motivations
I want to create an custom builder image using paketo jammy tiny stach with Nginx 0.15.3
The text was updated successfully, but these errors were encountered:
For a blocker why this buildpack can't run on the tiny stack, I can think of one example. NGINX is built with pcre support which is not available on tiny.
As to if libraries should be added to tiny to support nginx buildpack, I don't know if that will defeat the purpose of the tiny stack. Anyway that's a major discussion and needs broader community consensus, especially from the Stacks maintainer group. If you believe tiny stack should include the libraries, I'd advise you to figure out what libraries are missing, and then propose an RFC for discussion.
I'm closing this issue, but feel free to re-open it for any further discussion.
I'm creating a builder image to use paketo builder tiny stack, but I have this error:
ERROR: validating buildpacks: buildpack paketo-buildpacks/nginx@0.15.3 does not support stack io.buildpacks.stacks.jammy.tiny
Expected Behavior
It should to allow create builder image.
Current Behavior
It is giving this error:
ERROR: validating buildpacks: buildpack paketo-buildpacks/nginx@0.15.3 does not support stack io.buildpacks.stacks.jammy.tiny
Possible Solution
I think in the tiny jammy stack it should be added libraries or packages to support buildpack nginx@0.15.3
Steps to Reproduce
[[buildpacks]]
uri = "docker://gcr.io/paketo-buildpacks/nginx:0.15.3"
version = "0.15.3"
An when you want to create an own builder with pack cli, it should can to create this new builder custom, with the command:
pack builder create custom_tiny_jammy --config ./builder.toml
Motivations
I want to create an custom builder image using paketo jammy tiny stach with Nginx 0.15.3
The text was updated successfully, but these errors were encountered: