Files
claude-hub/run-claudecode-interactive.sh
Jonathan Flatt 5fa329be9f fix: move TypeScript to production dependencies and ensure compilation
- 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
2025-05-28 14:32:50 +00:00

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