-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The build is broken for Alpine v3.20 #108
Comments
same |
Same on Arch Linux |
After some digging on Nix build system, I found that if Alpine 3.20 updated |
Hi, this is a known issue that affects all runtimes that currently use the native (C++ client).
That is to say, pinning autoconf to 2.71 will provide a workaround for the foreseeable future. Thanks, |
I've gotten to a working spot by downgrading to alpine 3.19 to get a) autoconf 2.17, b) pthon 3.11 (node-gyp 9 is broken for python >= 3.12) This mess seems to work at least FROM node:20-alpine3.19 AS base
RUN apk update -q && apk upgrade
RUN apk add autoconf automake cmake g++ libtool make unzip curl-dev python3
RUN apk add --no-cache --update --repository=https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ libexecinfo-dev |
I gave up on alpine and managed to get debian 12 to work, though it too had the same error initially. FROM mcr.microsoft.com/powershell:7.4-debian-12
RUN apt update
RUN apt upgrade -y
RUN apt install nodejs npm g++ make cmake unzip libcurl4-openssl-dev automake libtool -y |
Hi everyone, we've merged a patch on python that fixes this issue, we will be porting to this one promptly. Quinn |
The error message:
No problem with v3.19, the error was introduced with the latest v3.20 version.
The text was updated successfully, but these errors were encountered: