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.
This commit is contained in:
PathosEthosLogos
2025-06-16 09:27:18 -05:00
committed by GitHub
parent de60474c6c
commit 9f93351470
+1 -1
View File
@@ -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