From 517e4454d005c63bf68f1630259781b99a4f475b Mon Sep 17 00:00:00 2001 From: Ulas Date: Sun, 5 Apr 2026 16:36:45 +0200 Subject: [PATCH] fix(docker): exclude database files from Docker build context *.db files were missing from .dockerignore - local builds could accidentally include the live oikos.db with real user data. --- .dockerignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.dockerignore b/.dockerignore index a2817b6..76be13d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,6 +5,11 @@ node_modules .worktrees .env .env.* + +# Database files (never include real data in image) +*.db +*.db-shm +*.db-wal .nvmrc .gitignore .dockerignore