forked from claude-did-this/claude-hub
- Move TypeScript from devDependencies to dependencies to ensure it's available in production - Update startup script to always compile TypeScript for latest source - Fix container restart loop caused by missing TypeScript compiler - Ensure webhook service starts successfully with compiled dist files
10 lines
250 B
Bash
Executable File
10 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run claudecode container interactively for testing and debugging
|
|
docker run -it --rm \
|
|
-v $(pwd):/workspace \
|
|
-v ~/.aws:/root/.aws:ro \
|
|
-v ~/.claude:/root/.claude \
|
|
-w /workspace \
|
|
--entrypoint /bin/bash \
|
|
claudecode:latest |