首页 > 解决方案 > Elastic Beanstalk 找不到 server.js 文件

问题描述

我正在尝试通过GitHub Actions将我的Angular应用程序部署到 Elastic Beanstalk。我正在使用这个GitHub 操作来部署到 ELB。

我的问题是,部署失败,因为 ELB 找不到server.js文件。我曾尝试将server.js文件添加到deploy.zip文件中,但随后会引发不同的错误。

我明白了,它需要运行,但是当我下载使用Travis CIserver.js推送到 ELB 的同一应用程序的构建时。它不会抛出这样的错误,并且 CI/CD 工作得很好。

这是 ELB 记录的错误server.js未添加到 deploy.zip 时)

throw err;
    ^

Error: Cannot find module '/var/app/current/server.js'
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)
    at Function.Module._load (internal/modules/cjs/loader.js:562:25)
    at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)
    at startup (internal/bootstrap/node.js:283:19)
    at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! climber-mentee-fe@1.0.1 aws: `node server.js && npm run serve`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the climber-mentee-fe@1.0.1 aws script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

> climber-mentee-fe@1.0.1 aws /var/app/current
> node server.js && npm run serve

我还附上了我的package.jsonmain.yml(用于 CI)文件。

包.json

"name": "climber-mentee-fe",
"version": "1.0.1",
  "scripts": {
    "ng": "ng",
    "start": "node server.js",
    "serve": "ng serve --configuration=dev",
    "start:staging": "gulp set --env=staging && concurrently --kill-others \"node server.js\" \"npm run serve\"",
    "start:prod": "gulp set --env=prod && concurrently --kill-others \"node server.js\" \"npm run serve\"",
    "build": "ng build --configuration=production",
    "test": "ng test",
    "aws": "node server.js && npm run serve",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  ...
  ...
 }

main.yml

name: My application CI

on:
  push:
    branches:
    - dry-run-actions

jobs:
  build:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [10.x]

    steps:
    - uses: actions/checkout@v1

    - name: Node ${{ matrix.node-version }}
      uses: actions/setup-node@v1
      with:
        node-version: ${{ matrix.node-version }}

    - name: Installing NPM
      run: npm install

    - name: Building application and copying package.json to dist
      run: npm run build && cp package.json dist/

    - name: Generate deployment package
      run: cd dist && zip -r ../deploy.zip ./*

    - name: Beanstalk Deploy for App
      uses: einaregilsson/beanstalk-deploy@v3
      with:
        aws_access_key: ${{secrets.AWS_ACCESS_KEY}}
        aws_secret_key: ${{secrets.AWS_SECRET_KEY}}
        application_name: my-app
        environment_name: my-app-env
        region: ap-south-1
        version_label: 455
        deployment_package: deploy.zip

var/app/current 的屏幕 在此处输入图像描述

标签: amazon-elastic-beanstalkgithub-actions

解决方案


我终于想通了。

我们需要压缩不包括文件夹的完整根文件node_modules夹。因此,在这种情况下,我不需要任何内容server.js​​并将package.json其包含在dist文件夹中。

更新了 yml 片段

- name: Building application
  run: npm run build

- name: Generate deployment package
  run: zip -r deploy.zip * -x ./node_modules

推荐阅读