fix(ci): copy templates/ for compile-time include_str
Build and Push / Test (push) Successful in 2m49s
Build and Push / Build and push image (push) Successful in 2m27s

This commit is contained in:
Story Crater Bot
2026-08-23 18:08:56 -07:00
parent 18f90fbebb
commit b5f77cbc3f
+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