feat: packaging Docker (Dockerfile + compose, volumes data/reports)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-05 04:24:03 +02:00
parent 17134ed1a6
commit 74371c442b
3 changed files with 49 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["server/index.ts"],
outDir: "dist",
format: ["esm"],
platform: "node",
target: "node22",
bundle: true,
noExternal: [/^(?!better-sqlite3|ssh2|cpu-features).*/],
external: ["better-sqlite3", "ssh2", "cpu-features"],
});