Skip to content

Commit 5f9b555

Browse files
keithceclaude
andcommitted
Fix Linux build: use musl target for Alpine compatibility
The n8n Docker image uses Alpine Linux which requires musl libc. Changed --target from bun-linux-x64 to bun-linux-x64-musl. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c1159a5 commit 5f9b555

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"start": "bun run ./src/cli.ts",
1313
"build": "bun build ./src/cli.ts --compile --minify --outfile ./dist/voice-to-notion",
14-
"build:linux": "bun build ./src/cli.ts --compile --minify --target=bun-linux-x64 --outfile ./dist/voice-to-notion-linux",
14+
"build:linux": "bun build ./src/cli.ts --compile --minify --target=bun-linux-x64-musl --outfile ./dist/voice-to-notion-linux",
1515
"build:windows": "bun build ./src/cli.ts --compile --minify --target=bun-windows-x64 --outfile ./dist/voice-to-notion-windows.exe",
1616
"build:all": "bun run build && bun run build:linux && bun run build:windows",
1717
"typecheck": "tsc --noEmit",

0 commit comments

Comments
 (0)