This commit is contained in:
Dominic Grimm 2022-12-14 19:13:32 +01:00
parent 2b65b6a1c5
commit f13c9c905f
No known key found for this signature in database
GPG key ID: 6F294212DEAAC530
15 changed files with 322 additions and 981 deletions

View file

@ -3,7 +3,7 @@ WORKDIR /usr/src/backend
FROM chef as planner
RUN mkdir src && touch src/main.rs
COPY ./Cargo.toml .
COPY ./Cargo.toml ./Cargo.lock ./
RUN cargo chef prepare --recipe-path recipe.json
FROM chef as builder