From fa623d09376ea16d750e512d8d824340b5af47d9 Mon Sep 17 00:00:00 2001 From: andrea <1-ssdrive@users.noreply.git.perditum.com> Date: Wed, 5 Mar 2025 22:27:09 +0000 Subject: [PATCH] fix(ci): i'm carrying ci these days --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6fc6d9d..1b0c815 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,6 @@ FROM rust:1.85 as builder WORKDIR /app -# this looks like being stupid, but docker cache is FIRE once you do this -COPY Cargo.toml Cargo.lock ./ -RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo fetch - -# there's the beauty COPY . . RUN cargo build --release