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
Before we can support 0.9, we need libcnb to support it first. It does not at the moment. https://github.com/buildpacks/libcnb/blob/release-1.x/build.go#L95-L100. It might be easy to add though because I believe we've added support for RFC 93 already. It would just depend on what else is needed to be 0.9 compatible and then cutting a release.
I think my preference would be for solution 1.), given it's cleaner. We might be able to pair that with some detect logic to support both for a while though. We could have an env variable like BP_LEGACY_PROCFILE_ENABLED (defaults to false) and if that's true, it would wrap all of the Procfile commands in a shell (or if you wanted to get a little more complicated, the env variable could be a space-separated list of Procfile process names to be wrapped in a shell). We could then retain that backwards compatibility support for a while, maybe 6 months or a year, then remove it.
The problem with that is that the lifecycle decides what shell to use for anything in the launch.toml with direct=false, but the lifecycle already implemented the solution quite some time ago, but only with BP_API 0.9. Like mentioned, we would need libcnb v2 for that.
RFC-0093 pushes the decision if a shell is necessary from the lifecycle to the individual buildpacks.
Are there already ideas how to move the Procfile Buildpack to Buildpack API Version 0.9?
Possible Solution
USE_SHELL
environment variable which chooses the shell.The text was updated successfully, but these errors were encountered: