Skip to content

Commit 4df2ecf

Browse files
committed
Bumb rust version in dockerfile
1 parent b0f5b74 commit 4df2ecf

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,9 +1,9 @@
1-
FROM lukemathwalker/cargo-chef:latest-rust-1.82.0 AS planner
1+
FROM lukemathwalker/cargo-chef:latest-rust-1.83.0 AS planner
22
WORKDIR /app
33
COPY . .
44
RUN cargo chef prepare --recipe-path recipe.json
55

6-
FROM lukemathwalker/cargo-chef:latest-rust-1.82.0 AS cacher
6+
FROM lukemathwalker/cargo-chef:latest-rust-1.83.0 AS cacher
77
WORKDIR /app
88
COPY --from=planner /app/recipe.json recipe.json
99
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --assume-yes \
@@ -18,7 +18,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-instal
1818
&& apt-get clean
1919
RUN cargo chef cook --release --recipe-path recipe.json
2020

21-
FROM docker.io/rust:1.82.0 AS builder
21+
FROM docker.io/rust:1.83.0 AS builder
2222
WORKDIR /app
2323
COPY . .
2424
COPY --from=cacher /app/target /app/target

0 commit comments

Comments
 (0)