From 9f93351470e2c55fd2a116c0356bef728bd3f054 Mon Sep 17 00:00:00 2001 From: PathosEthosLogos Date: Mon, 16 Jun 2025 09:27:18 -0500 Subject: [PATCH] Fix cacher circular dependency message It seems that some Git message/note was copy pasted into the Dockerfile. I put it back to original from previous commit. Built and working. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 23acd1c2..39431960 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY Cargo.toml Cargo.lock ./ RUN mkdir -p src && \ echo 'fn main() { println!("Dummy build for caching dependencies"); }' > src/main.rs && \ cargo build --release && \ - @@ -13,41 +22,68 @@ RUN mkdir -p src && \ + rm -rf src target/release/deps/oxicloud* # Stage 2: Build the application FROM rust:1.85-alpine AS builder WORKDIR /app