Linker error when installing wasm-bindgen-cli
in container rust:1.72.0-alpine
#3590
Labels
wasm-bindgen-cli
in container rust:1.72.0-alpine
#3590
Describe the Bug
I am unable to install
wasm-bindgen-cli
in the Alpine-based Rust container of version 1.72.0 (rust:1.72.0-alpine
).Steps to Reproduce
docker run --rm -it rust:1.71.1-alpine /bin/sh -c 'apk add pkgconfig musl-dev openssl-dev && cargo install wasm-bindgen-cli'
and observe that the installation succeeds as expected.docker run --rm -it rust:1.72.0-alpine /bin/sh -c 'apk add pkgconfig musl-dev openssl-dev && cargo install wasm-bindgen-cli'
and observe that the installation fails.Expected Behavior
Installation succeeds.
Actual Behavior
Installation fails with the output
Additional Context
Despite the linker output, one can check that the container does contain the
libssl
andlibcrypto
libraries which are installed byapk
in the command provided.The problem does not arise with Debian-based Rust containers. There are no problems in the Rust 1.71.1 container, the bug only occurs with Rust 1.72.0.
This bug is reproducable on both
amd64
andarm64
architecture.The text was updated successfully, but these errors were encountered: