node.js - 从 8 升级到 9 后无法构建 Angular 项目

标签 node.js angular typescript docker

我已经使用 ng update 将我的 Angular 项目从 8 升级到 9工具。在本地(Windows)一切正常,但是当我尝试在 docker 中构建项目时,出现以下错误:

Step 6/11 : RUN npm run build
  ---> Running in d60f739a56f6
 > check-it-frontend@0.0.0 build /app
 > ng build --prod
 Compiling @angular/core : es2015 as esm2015
 ERROR in EINVAL: invalid argument, rename '/app/node_modules/@angular/core/core.d.ts' -> '/app/node_modules/@angular/core/core.d.ts.__ivy_ngcc_bak'
 npm ERR! code ELIFECYCLE
 npm ERR! errno 1
 npm ERR! check-it-frontend@0.0.0 build: `ng build --prod`
 npm ERR! Exit status 1
 npm ERR! 
 npm ERR! Failed at the check-it-frontend@0.0.0 build script.
 npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
 npm ERR! A complete log of this run can be found in:
 npm ERR!     /root/.npm/_logs/2020-03-20T11_44_02_696Z-debug.log
 The command '/bin/sh -c npm run build' returned a non-zero code: 1

码头文件:
FROM node:13.10.1-stretch as base

RUN apt-get update -qq && apt-get install -y build-essential

ADD . /app
WORKDIR /app

RUN npm ci
RUN npm run build

依赖项:
"dependencies": {
  "@angular/animations": "^9.0.7",
  "@angular/cdk": "^8.2.3",
  "@angular/common": "^9.0.7",
  "@angular/compiler": "^9.0.7",
  "@angular/core": "^9.0.7",
  "@angular/forms": "^9.0.7",
  "@angular/material": "^8.2.3",
  "@angular/platform-browser": "^9.0.7",
  "@angular/platform-browser-dynamic": "^9.0.7",
  "@angular/router": "^9.0.7",
  "core-js": "^2.4.1",
  "rxjs": "^6.5.4",
  "rxjs-compat": "^6.0.0-rc.0",
  "tslib": "^1.10.0",
  "zone.js": "~0.10.2"
},
"devDependencies": {
  "@angular-devkit/build-angular": "~0.900.7",
  "@angular/cli": "^9.0.7",
  "@angular/compiler-cli": "^9.0.7",
  "@angular/language-service": "^9.0.7",
  "@types/jasmine": "~2.8.3",
  "@types/jasminewd2": "~2.0.2",
  "@types/node": "^12.11.1",
  "codelyzer": "^5.1.2",
  "jasmine-core": "~2.8.0",
  "jasmine-spec-reporter": "~4.2.1",
  "karma": "~2.0.0",
  "karma-chrome-launcher": "~2.2.0",
  "karma-coverage-istanbul-reporter": "^1.2.1",
  "karma-jasmine": "~1.1.0",
  "karma-jasmine-html-reporter": "^0.2.2",
  "node-sass": "^4.13.1",
  "protractor": "~5.1.2",
  "ts-node": "~4.1.0",
  "tslint": "~5.9.1",
  "typescript": "~3.7.5"
}

我能做些什么来修复它? Angular 8 的图像很好。我尝试了不同的 Node 图像,但没有任何帮助......

最佳答案

我不确定您的问题是什么或导致它的原因是什么,但我进行了快速搜索并偶然发现了这个 github issue .它涉及并行构建(我认为这不是你的情况),但我认为它仍然适用于这里,因为错误发生在 angular core 的编译过程中。
建议的解决方法是将 Angular 兼容性编译器 ( ngcc ) 作为 postinstall 运行脚本,而不是让构建本身触发它。
修改您的 package.json文件并将以下内容添加到 scripts部分:

"postinstall": "ngcc

关于node.js - 从 8 升级到 9 后无法构建 Angular 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60772173/

相关文章:

node.js - express 静态服务index.html 如何拒绝呢?

angular - 在 TypeScript.2.7 中找不到名称 'TextDecoder'

node.js - Angular 兼容项目的对等依赖关系?

node.js - 如何在 angular-cli 和 electron-js 中使用文件系统 (fs)

Angular Production Build 占用了大约 1.5 GB 的内存,并且仍然运行时内存不足

node.js - 自动热键在应用程序中不起作用,但在外部起作用

javascript - 用 Angular 6 中的接口(interface)信息填充字符串数组

angular - 在 angular 的 ng-apexchart 上键入未定义错误

node.js - 如果未找到 ID,为什么 mongoose findById 返回错误

node.js - 如何在 NodeJS 中测试 socket.setKeepAlive