From b5f77cbc3f41cad5a0ab3b1b616e6f5a3ecd5e6c Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sun, 23 Aug 2026 18:08:56 -0700 Subject: [PATCH] fix(ci): copy templates/ for compile-time include_str --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae7e4a9..c3c36f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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