fix: dockerfile

This commit is contained in:
thek4n 2026-07-13 23:58:39 +03:00
parent a8769fb85c
commit 1411dd0570

View File

@ -3,7 +3,7 @@ FROM rust:1.94 AS chef
RUN cargo install --locked cargo-chef RUN cargo install --locked cargo-chef
WORKDIR /app WORKDIR /app
COPY Cargo.toml Cargo.lock . COPY Cargo.toml Cargo.lock ./
RUN mkdir src && touch src/main.rs RUN mkdir src && touch src/main.rs
RUN cargo chef prepare --recipe-path recipe.json RUN cargo chef prepare --recipe-path recipe.json