feat: packaging Docker (Dockerfile + compose, volumes data/reports)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -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"],
|
||||
});
|
||||
Reference in New Issue
Block a user