The stacks-node compilation fails because the Dockerfile used to build the stacks-node binary uses the latest rust:bookworm image available: https://github.com/hirosystems/stacks-regtest-env/blob/main/Dockerfile.stacks-node#L1
About 9 hours ago, a new version of rust was published (1.82), which causes the node compilation to fail. We've solved this issue by using a specific version (1.81): FROM rust:1.81.0-bookworm AS builder
The
stacks-nodecompilation fails because the Dockerfile used to build thestacks-nodebinary uses the latestrust:bookwormimage available: https://github.com/hirosystems/stacks-regtest-env/blob/main/Dockerfile.stacks-node#L1About 9 hours ago, a new version of rust was published (1.82), which causes the node compilation to fail. We've solved this issue by using a specific version (1.81):
FROM rust:1.81.0-bookworm AS builder