From dd3a624ce2bfefe40dc74930f104a8aab38daf28 Mon Sep 17 00:00:00 2001 From: Trey t Date: Wed, 26 Nov 2025 20:12:04 -0600 Subject: [PATCH] Fix Dockerfile COPY syntax and add template placeholder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove shell redirect syntax from COPY (not supported in Docker) - Add .gitkeep to templates/emails to ensure directory exists 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 4 ++-- templates/emails/.gitkeep | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 templates/emails/.gitkeep diff --git a/Dockerfile b/Dockerfile index 43fecbf..d17d238 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,8 +42,8 @@ COPY --from=builder /app/api /app/api COPY --from=builder /app/worker /app/worker COPY --from=builder /app/admin /app/admin -# Copy templates directory if it exists -COPY --from=builder /app/templates /app/templates 2>/dev/null || true +# Copy templates directory +COPY --from=builder /app/templates /app/templates # Copy migrations and seeds for production use COPY --from=builder /app/migrations /app/migrations diff --git a/templates/emails/.gitkeep b/templates/emails/.gitkeep new file mode 100644 index 0000000..879f526 --- /dev/null +++ b/templates/emails/.gitkeep @@ -0,0 +1 @@ +# Placeholder to keep directory in git