commit 3d038b042f89240587e60df37e526128a1f43e79 Author: Shihaam Abdul Rahman Date: Sun Sep 20 02:50:35 2026 +0500 poc diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c7a9c2a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM node:22-bookworm-slim + +RUN apt-get update && apt-get install -y --no-install-recommends \ + git \ + ripgrep \ + ca-certificates \ + curl \ + less \ + procps \ + && rm -rf /var/lib/apt/lists/* + +RUN npm install -g @anthropic-ai/claude-code && npm cache clean --force + +CMD claude diff --git a/README.md b/README.md new file mode 100644 index 0000000..351a6ac --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ + + + +## How to use +```bash +alias ccc='docker run --rm -it -v ~/.claude:/root/.claude -v ~/.claude.json:/root/.claude.json -v $PWD:$PWD -w $PWD git.shihaam.dev/dockerfiles/ccc' +``` diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..0204441 --- /dev/null +++ b/compose.yml @@ -0,0 +1,5 @@ +services: + ccc: + build: . + hostname: ccc + image: git.shihaam.dev/dockerfiles/ccc