File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM rust:1.75 .0-slim as base
1
+ FROM rust:1.78 .0-slim AS base
2
2
WORKDIR /usr/src/aot-backend
3
3
RUN apt-get update -y && apt-get install -y \
4
4
libpq-dev \
@@ -9,7 +9,7 @@ RUN cargo install diesel_cli --no-default-features --features postgres
9
9
RUN cargo install cargo-watch
10
10
RUN cargo install cargo-chef
11
11
12
- FROM base as planner
12
+ FROM base AS planner
13
13
COPY . .
14
14
RUN cargo chef prepare --recipe-path recipe.json
15
15
Original file line number Diff line number Diff line change 1
- FROM rust:1.75 .0-slim as base
1
+ FROM rust:1.78 .0-slim AS base
2
2
WORKDIR /usr/src/aot-backend
3
3
RUN apt-get update -y && apt-get install -y \
4
4
libpq-dev \
@@ -7,7 +7,7 @@ RUN apt-get update -y && apt-get install -y \
7
7
libssl-dev
8
8
RUN cargo install cargo-chef
9
9
10
- FROM base as planner
10
+ FROM base AS planner
11
11
COPY . .
12
12
RUN cargo chef prepare --recipe-path recipe.json
13
13
You can’t perform that action at this time.
0 commit comments