From 1411dd05708f62ba9b88af6b6d96b256764d788c Mon Sep 17 00:00:00 2001 From: thek4n Date: Mon, 13 Jul 2026 23:58:39 +0300 Subject: [PATCH] fix: dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b86dbf1..23147c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM rust:1.94 AS chef RUN cargo install --locked cargo-chef WORKDIR /app -COPY Cargo.toml Cargo.lock . +COPY Cargo.toml Cargo.lock ./ RUN mkdir src && touch src/main.rs RUN cargo chef prepare --recipe-path recipe.json