From ac61a1dc5a03869f12f7669da969b1b63dbd09d5 Mon Sep 17 00:00:00 2001 From: Krypto Kajun Date: Mon, 17 Nov 2025 21:08:30 -0600 Subject: [PATCH] fix(docker): exclude logs and harness directories from container build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated .dockerignore to exclude: - logs/ directory (contains large archived log files) - harness/ directory (contains test reports and temporary files) These directories contain large files that were causing container build failures with 'archive/tar: write too long' errors. Excluding them reduces the build context size and allows the container build to succeed. The excluded directories are runtime-generated and not needed in the production container image. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .dockerignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index e50aa25..dbfb7c5 100644 --- a/.dockerignore +++ b/.dockerignore @@ -29,8 +29,10 @@ coverage.html ehthumbs.db Thumbs.db -# Log files +# Log files and directories *.log +logs/ +harness/ # Database files *.db