update Dockerfile

This commit is contained in:
Denis-Cosmin Nutiu 2024-12-26 19:05:33 +02:00
parent e4c2752335
commit 291d84dfd0

View file

@ -1,4 +1,4 @@
FROM rust:1.83.0-bookworm as planner FROM rust:1.83.0-bookworm AS planner
RUN cargo install cargo-chef RUN cargo install cargo-chef
WORKDIR /app WORKDIR /app
@ -21,6 +21,8 @@ RUN cargo chef cook --recipe-path recipe.json
# Build the whole project # Build the whole project
COPY . . COPY . .
RUN cargo build --profile release RUN cargo build --profile release
# Run the project
FROM rust:1.83.0-bookworm AS runner FROM rust:1.83.0-bookworm AS runner
WORKDIR /app WORKDIR /app