Add build-cli recipe for local binary compilation
This commit is contained in:
parent
2343ed0449
commit
e1c45d6d9f
1 changed files with 6 additions and 0 deletions
6
justfile
6
justfile
|
|
@ -13,6 +13,12 @@ start:
|
||||||
check:
|
check:
|
||||||
bun run lint && bun run typecheck && bun run test
|
bun run lint && bun run typecheck && bun run test
|
||||||
|
|
||||||
|
# Build CLI binary (smallest possible)
|
||||||
|
build-cli:
|
||||||
|
mkdir -p dist/bin
|
||||||
|
bun build --compile --minify --sourcemap=none src/cli.ts --outfile dist/bin/claude-remote
|
||||||
|
|
||||||
|
# Docker build
|
||||||
build:
|
build:
|
||||||
docker build -t claude-remote .
|
docker build -t claude-remote .
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue