FROM node:22-bookworm-slim RUN apt-get update && apt-get install -y --no-install-recommends \ git \ ripgrep \ ca-certificates \ curl \ less \ jq \ procps \ python3 \ python-is-python3 \ && rm -rf /var/lib/apt/lists/* RUN npm install -g @anthropic-ai/claude-code && npm cache clean --force ENTRYPOINT ["claude"] CMD []