2021.3.6
dockerでPuppeteerを動かそうと下記エラーが出ました。
TypeError [ERR_INVALID_ARG_TYPE]: The "original" argument must be of type function
at promisify (internal/util.js:214:11)
at Object.<anonymous> (/usr/src/app/node_modules/extract-zip/index.js:11:18)
at Module._compile (module.js:653:30)
at Object.Module._extensions..js (module.js:664:10)
at Module.load (module.js:566:32)
at tryModuleLoad (module.js:506:12)
at Function.Module._load (module.js:498:3)
at Module.require (module.js:597:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/usr/src/app/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserFetcher.js:48:39)
調べてみるとnodeのバージョンが古いみたいです。Dockerfileを見るとnode:carbon-alpine
を使っていることがわかりました。carbon-alpineはENV NODE_VERSION=8.17.0
なので古かったです。
DockerfileのnodeのバージョンをFROM node:12.19.0
にしたらビルドが通りました。