【发布时间】:2021-08-28 14:25:08
【问题描述】:
我在 AWS EC2 实例上运行我的前端并使用代码管道将我的代码交付到部署。执行时出现此错误,并且我当前的构建无法执行超出此点。但在我的本地主机中,一切正常。
这是来自我的/var/log/eb-engine.log的错误
2021/06/11 15:54:30.130038 [INFO] Running command /bin/sh -c npm config set jobs 1
2021/06/11 15:54:30.726850 [INFO] Running command /bin/sh -c npm --production install
2021/06/11 15:55:25.517929 [INFO]
> ejs@2.7.4 postinstall /var/app/staging/node_modules/@surma/rollup-plugin-off-main-thread/node_modules/ejs
> node ./postinstall.js
2021/06/11 15:55:25.520296 [ERROR] An error occurred during execution of command [app-deploy] - [Use NPM to install dependencies]. Stop running the command. Error: Command /bin/sh -c npm --production install failed with error exit status 244. Stderr:
2021/06/11 15:55:25.520730 [INFO] Executing cleanup logic
2021/06/11 15:55:25.529146 [INFO] CommandService Response: {"status":"FAILURE","api_version":"1.0","results":[{"status":"FAILURE","msg":"Engine execution has encountered an error.","returncode":1,"events":[{"msg":"Instance deployment: You didn't specify a Node.js version in the 'package.json' file in your source bundle. The deployment didn't install a specific Node.js version.","timestamp":1623426870,"severity":"INFO"},{"msg":"Instance deployment: 'npm' failed to install dependencies that you defined in 'package.json'. For details, see 'eb-engine.log'. The deployment failed.","timestamp":1623426925,"severity":"ERROR"},{"msg":"Instance deployment failed. For details, see 'eb-engine.log'.","timestamp":1623426925,"severity":"ERROR"}]}]}
2021/06/11 15:55:25.535409 [INFO] Platform Engine finished execution on command: app-deploy
我在 EC2 上使用 t2.micro 实例。
【问题讨论】:
-
部署文件中发生了什么(即在 npm install --production 之前)?
标签: node.js amazon-web-services npm amazon-elastic-beanstalk ejs