fix(ci): copy templates/ for compile-time include_str

This commit is contained in:
Story Crater Bot
2026-08-23 18:08:56 -07:00
parent 9e717c0865
commit 46d382e6cc
+2 -1
View File
@@ -10,10 +10,11 @@ RUN apt-get update && apt-get install -y \
g++ \
&& rm -rf /var/lib/apt/lists/*
# Copy manifests and source
# Copy manifests, source, and compile-time assets
COPY Cargo.toml Cargo.lock ./
RUN mkdir -p src && echo '// workspace root' > src/lib.rs
COPY crates ./crates
COPY templates ./templates
# Build release binary
RUN cargo build --release -p mem-cli --bin mem