Open joshwlewis opened 3 months ago
Consider an app with an index.js and a Procfile with contents like:
index.js
Procfile
worker: node index.js
When running a build with heroku/builder:24, this results an image with two processes:
heroku/builder:24
web: node index.js worker: bash -c node index.js
This is probably unexpected for the user. There is an extra process, and the extra web process is unlikely to accept http connections anyway.
web
My feeling is that we should probably avoid adding processes if we know the the procfile buildpack was detected and is part of the build plan.
Related issue: https://github.com/heroku/buildpacks-go/issues/85
Consider an app with an
index.js
and aProcfile
with contents like:When running a build with
heroku/builder:24
, this results an image with two processes:This is probably unexpected for the user. There is an extra process, and the extra
web
process is unlikely to accept http connections anyway.My feeling is that we should probably avoid adding processes if we know the the procfile buildpack was detected and is part of the build plan.