summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rw-r--r--run.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/run.sh b/run.sh
new file mode 100644
index 0000000..693cdd4
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+# Pull the pre-built image
+docker pull ghcr.io/zeeno-atl/claude-code:latest
+
+# Run with current directory
+docker run -it --rm -v "$(pwd):/app" ghcr.io/zeeno-atl/claude-code:latest
+
+# Run with API key
+docker run -it --rm -v "$(pwd):/app" -e ANTHROPIC_API_KEY="your_api_key" ghcr.io/zeeno-atl/claude-code:latest