From 446ffe83a2043636ffe99691454e843ef9fb179f Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sat, 9 May 2026 00:38:42 +0900 Subject: Fix Docker startup: add package.json to app stage, respect DB_PATH npm start requires package.json in the working directory. Also wire up the DB_PATH env var so the DB is created inside the mounted volume. Co-Authored-By: Claude Sonnet 4.6 --- app/lib/db.server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') diff --git a/app/lib/db.server.ts b/app/lib/db.server.ts index f1cacbb..dd9184d 100644 --- a/app/lib/db.server.ts +++ b/app/lib/db.server.ts @@ -5,7 +5,7 @@ let db: Database.Database | null = null; export function getDb(): Database.Database { if (!db) { - const dbPath = path.resolve("whois.db"); + const dbPath = process.env.DB_PATH ?? path.resolve("whois.db"); db = new Database(dbPath); db.pragma("journal_mode = WAL"); db.pragma("foreign_keys = ON"); -- cgit v1.2.3