From feb7c9e561e1645bf75653dfc120ee73b0824b5c Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 14 Dec 2025 12:16:27 +0100 Subject: [PATCH] fix: Remove setup_database.sql from Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Database schema is managed externally - the SQL file was only copied but never used by the application. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3a8faa3..83baeba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,6 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy application COPY src/ ./src/ -COPY setup_database.sql . COPY pyproject.toml . # Configure git