Node.js 如何在AWS Elastic Beanstalk中指定Procfile的路径?

Node.js 如何在AWS Elastic Beanstalk中指定Procfile的路径?,node.js,amazon-web-services,amazon-elastic-beanstalk,Node.js,Amazon Web Services,Amazon Elastic Beanstalk,我正在制作一个monorepo nodejs应用程序,我想为我的monorepo中的每个包指定一个Procfile 到目前为止,我发现Procfile文件需要位于根文件夹中 如何指定所需的Procfile的路径 比如说 my-app/ packages/ server/ ...other files Procfile web/ ...other files 并使用packages/server/Procfile中的Procfile,您无

我正在制作一个monorepo nodejs应用程序,我想为我的monorepo中的每个包指定一个
Procfile

到目前为止,我发现
Procfile
文件需要位于根文件夹中

如何指定所需的
Procfile
的路径

比如说

my-app/
  packages/
    server/
      ...other files
      Procfile 
    web/
      ...other files

并使用
packages/server/Procfile
中的
Procfile
,您无法更改路径。必须位于应用程序的根目录中:

将名为Procfile的文件放在应用程序源的根目录中