Skip to content

Commit 4276235

Browse files
authored
fix: glibc runtime errors (#14)
The previous chef container now has glibc compat issues, moving to a known good image
1 parent 74d296b commit 4276235

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
### STAGE 0: Create base chef image for building
33
### cargo chef is used to speed up the build process by caching dependencies using docker
44
### Use BUILDPLATFORM to ensure we use the native platform for building
5-
FROM --platform=$BUILDPLATFORM lukemathwalker/cargo-chef:latest-rust-latest as chef
5+
FROM --platform=$BUILDPLATFORM rust:1.90-bookworm as chef
66

77
RUN cargo install cargo-chef
88

Dockerfile.pecorino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#syntax=docker/dockerfile:1.7-labs
22
### STAGE 0: Create base chef image for building
33
### cargo chef is used to speed up the build process by caching dependencies using docker
4-
FROM --platform=$TARGETPLATFORM lukemathwalker/cargo-chef:latest-rust-latest as chef
4+
FROM --platform=$TARGETPLATFORM rust:1.90-bookworm as chef
55

66
RUN cargo install cargo-chef
77

0 commit comments

Comments
 (0)