Skip to content

Commit f5cea66

Browse files
committed
docker: fix base image to 1.85
Changes to later versions of rust have broken our dockerfile. This change fixes our base image to the version of rust we're currently using, where the break is not present. We'll need to fix this in future when we bump versions, but for now we make a minimum change to be able to cut the 2.4 release.
1 parent bb69f66 commit f5cea66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Run from the root of the project
22

33
# Use the rust image as the base image for the build stage
4-
FROM rust:latest AS base
4+
FROM rust:1.85.0 AS base
5+
56
# buildkit will provide this automatically, no need to pass it in
67
ARG TARGETARCH
78

0 commit comments

Comments
 (0)