fix: update dockerfile

This commit is contained in:
2025-01-05 23:23:11 +01:00
parent 052e15ce67
commit b10775daeb
2 changed files with 2 additions and 4 deletions

View File

@@ -5,8 +5,7 @@ const DATA_DIR = Deno.env.has("DATA_DIR")
? path.resolve(Deno.env.get("DATA_DIR")!)
: path.resolve(Deno.cwd(), "data");
// const DB_FILE = "file://" + path.resolve(DATA_DIR, "db.sqlite");
const DB_FILE = "file:data-dev/db.sqlite";
const DB_FILE = "file:" + path.resolve(DATA_DIR, "db.sqlite");
export default defineConfig({
out: "./drizzle",