Skip to content

Commit 98586a9

Browse files
committed
fix: rust version in Docker image
1 parent 2c85cad commit 98586a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.74 as planner
1+
FROM rust:1.84 as planner
22
WORKDIR app
33

44
RUN cargo install cargo-chef
@@ -7,15 +7,15 @@ COPY . .
77
# Analyze dependencies
88
RUN cargo chef prepare --recipe-path recipe.json
99

10-
FROM rust:1.74 as cacher
10+
FROM rust:1.84 as cacher
1111
WORKDIR app
1212
RUN cargo install cargo-chef
1313
COPY --from=planner /app/recipe.json recipe.json
1414

1515
# Cache dependencies
1616
RUN cargo chef cook --release --recipe-path recipe.json
1717

18-
FROM rust:1.74 as builder
18+
FROM rust:1.84 as builder
1919
WORKDIR app
2020
COPY . .
2121

0 commit comments

Comments
 (0)