Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# to keep this in sync between the two images. A slight mismatch in these layers
# would lead to douple the storage requirement on Exercism's servers.

FROM rust:1.95.0 AS build-local-registry
FROM rust:1.95.0-trixie AS build-local-registry

WORKDIR /work
COPY local-registry/Cargo.toml .
Expand Down Expand Up @@ -46,7 +46,7 @@ EOF
############################## END SHARED LAYERS ##############################


FROM rust:1.95.0 AS build
FROM rust:1.95.0-trixie AS build

WORKDIR /work
COPY Cargo.* ./
Expand Down
Loading