File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM lukemathwalker/cargo-chef:latest-rust-1.82 .0 AS planner
1
+ FROM lukemathwalker/cargo-chef:latest-rust-1.83 .0 AS planner
2
2
WORKDIR /app
3
3
COPY . .
4
4
RUN cargo chef prepare --recipe-path recipe.json
5
5
6
- FROM lukemathwalker/cargo-chef:latest-rust-1.82 .0 AS cacher
6
+ FROM lukemathwalker/cargo-chef:latest-rust-1.83 .0 AS cacher
7
7
WORKDIR /app
8
8
COPY --from=planner /app/recipe.json recipe.json
9
9
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
18
18
&& apt-get clean
19
19
RUN cargo chef cook --release --recipe-path recipe.json
20
20
21
- FROM docker.io/rust:1.82 .0 AS builder
21
+ FROM docker.io/rust:1.83 .0 AS builder
22
22
WORKDIR /app
23
23
COPY . .
24
24
COPY --from=cacher /app/target /app/target
You can’t perform that action at this time.
0 commit comments