We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c85cad commit 98586a9Copy full SHA for 98586a9
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM rust:1.74 as planner
+FROM rust:1.84 as planner
2
WORKDIR app
3
4
RUN cargo install cargo-chef
@@ -7,15 +7,15 @@ COPY . .
7
# Analyze dependencies
8
RUN cargo chef prepare --recipe-path recipe.json
9
10
-FROM rust:1.74 as cacher
+FROM rust:1.84 as cacher
11
12
13
COPY --from=planner /app/recipe.json recipe.json
14
15
# Cache dependencies
16
RUN cargo chef cook --release --recipe-path recipe.json
17
18
-FROM rust:1.74 as builder
+FROM rust:1.84 as builder
19
20
COPY . .
21
0 commit comments