Skip to content

Commit 61a796e

Browse files
authored
fix: use rust:1.89-bookworm image in the rbuilder Dockerfile (#796)
## 📝 Summary #790 updated the rbuilder docker base image to use rust:1.89 which broke the latest develop images with: ``` /app/rbuilder: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by /app/rbuilder) /app/rbuilder: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.39' not found (required by /app/rbuilder) ``` Use `rust:1.89-bookworm` to fix this issue ## ✅ I have completed the following steps: * [x] Run `make lint` * [x] Run `make test` * [x] Added tests (if applicable)
1 parent 4ee212e commit 61a796e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile.rbuilder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
ARG FEATURES
1010
ARG RBUILDER_BIN="rbuilder"
1111

12-
FROM rust:1.89 AS base
12+
FROM rust:1.89-bookworm AS base
1313
ARG TARGETPLATFORM
1414

1515
RUN apt-get update \

0 commit comments

Comments
 (0)