You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node-pre-gyp ERR! install response status 404 Not Found on https://github.com/Automattic/node-canvas/releases/download/v2.8.0/canvas-v2.8.0-node-v72-linux-musl-arm64.tar.gz
#1864
Hi, I'm attempting to run an app with canvas in AWS CodeBuild.
buildspec.yml:
version: 0.2
env:
shell: /bin/sh
phases:
install:
runtime-versions:
nodejs: 12
python: 3.x
python: 2.x
pre_build:
commands:
- echo Installing source NPM dependencies...
- npm install
- npm install -g npm@7.20.0
build:
commands:
- docker-compose -f docker-compose.dev.yml up --build -d
post_build:
commands:
- echo Build completed on
date
artifacts:
files:
- '**/*'
The relevant line in package.json:
"canvas": "^2.8.0"
The error I'm getting in CodeBuild log:
The npm page says that 2.8.0 is the latest version, but it cannot find it.
thanks
The text was updated successfully, but these errors were encountered: