docker-node icon indicating copy to clipboard operation
docker-node copied to clipboard

node:18-alpine build failing for canvas install

Open sabreu-teknorix opened this issue 1 year ago • 8 comments
trafficstars

Environment

  • Platform: Bitbucket pipeline
  • Docker Version: N/A
  • Node.js Version: 18.20.3
  • Image Tag: 18-alpine

Expected Behavior

build should not fail

Current Behavior

Build failing with stack trace

.../[email protected]/node_modules/canvas install: Traceback (most recent call last): .../[email protected]/node_modules/canvas install: File "/root/.cache/node/corepack/v1/pnpm/8.15.7/dist/node_modules/node-gyp/gyp/gyp_main.py", line 42, in .../[email protected]/node_modules/canvas install: import gyp # noqa: E402 .../[email protected]/node_modules/canvas install: ^^^^^^^^^^ .../[email protected]/node_modules/canvas install: File "/root/.cache/node/corepack/v1/pnpm/8.15.7/dist/node_modules/node-gyp/gyp/pylib/gyp/init.py", line 9, in .../[email protected]/node_modules/canvas install: import gyp.input .../[email protected]/node_modules/canvas install: File "/root/.cache/node/corepack/v1/pnpm/8.15.7/dist/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 19, in .../[email protected]/node_modules/canvas install: from distutils.version import StrictVersion .../[email protected]/node_modules/canvas install: ModuleNotFoundError: No module named 'distutils' .../[email protected]/node_modules/canvas install: gyp ERR! configure error .../[email protected]/node_modules/canvas install: gyp ERR! stack Error: gyp failed with exit code: 1 .../[email protected]/node_modules/canvas install: gyp ERR! stack at ChildProcess.onCpExit (/root/.cache/node/corepack/v1/pnpm/8.15.7/dist/node_modules/node-gyp/lib/configure.js:325:16) .../[email protected]/node_modules/canvas install: gyp ERR! stack at ChildProcess.emit (node:events:517:28) .../[email protected]/node_modules/canvas install: gyp ERR! stack at ChildProcess._handle.onexit (node:internal/child_process:292:12) .../[email protected]/node_modules/canvas install: gyp ERR! System Linux 5.15.0-1058-aws .../[email protected]/node_modules/canvas install: gyp ERR! command "/usr/local/bin/node" "/root/.cache/node/corepack/v1/pnpm/8.15.7/dist/node_modules/node-gyp/bin/node-gyp.js" "configure" "--fallback-to-build" "--update-binary" "--module=/app/node_modules/.pnpm/[email protected]/node_modules/canvas/build/Release/canvas.node" "--module_name=canvas" "--module_path=/app/node_modules/.pnpm/[email protected]/node_modules/canvas/build/Release" "--napi_version=9" "--node_abi_napi=napi" "--napi_build_version=0" "--node_napi_label=node-v108" .../[email protected]/node_modules/canvas install: gyp ERR! cwd /app/node_modules/.pnpm/[email protected]/node_modules/canvas .../[email protected]/node_modules/canvas install: gyp ERR! node -v v18.20.3 .../[email protected]/node_modules/canvas install: gyp ERR! node-gyp -v v9.4.1 .../[email protected]/node_modules/canvas install: gyp ERR! not ok

Possible Solution

Steps to Reproduce

Additional Information

sabreu-teknorix avatar May 23 '24 06:05 sabreu-teknorix

Your issue is a combination of https://github.com/Automattic/node-canvas/issues/2158 and https://github.com/Automattic/node-canvas/issues/1065.

The following works

FROM node:18-alpine

WORKDIR /home/node

RUN set -ex; \
    apk add --no-cache --virtual .gyp \
        # Gyp build dependencies
        python3 make g++ \
        # Canvas build dependencies
        pixman-dev cairo-dev pango-dev pkgconfig; \
    npm install canvas; \
    apk del .gyp

LaurentGoderre avatar May 23 '24 13:05 LaurentGoderre

This solution didn't work for me but I found a way to get it to work. Docker updated Alpine yesterday and reverse my dockerfile to the previous one worked : lts-alpine3.19 for Node 20 or 18-alpine3.19 for Node 18.

maxime-gd avatar May 23 '24 15:05 maxime-gd

@maxime-gd what error do you have? It worked for me for both alpine 3.19 and 3.20

LaurentGoderre avatar May 23 '24 16:05 LaurentGoderre

Ran into the same distutils issue in a different project, had to revert to alpine3.19 to fix.

I think maybe the python version was updated in alpine3.20 (to 3.12) and thus distutils is no longer available by default, so something like pip3 install setuptools would be required to fix. Haven't gotten this working fully yet though.

alex-statsig avatar May 23 '24 16:05 alex-statsig

The same one as @sabreu-teknorix and @alex-statsig : distutils missing.

maxime-gd avatar May 23 '24 16:05 maxime-gd

The issue is this: https://github.com/nodejs/node-gyp/issues/2869 and affects node:20-alpine and probably others as well. This is not just a canvas issue, it affects all node-gyp builds.

apk add py-setuptools appears to fix it.

SystemParadox avatar Jun 04 '24 08:06 SystemParadox

Maybe we need to append the docs about building native deps to document this

LaurentGoderre avatar Jun 04 '24 15:06 LaurentGoderre

PR to update the docs: #2099

LaurentGoderre avatar Jun 04 '24 19:06 LaurentGoderre