FROM python:3.13-slim

RUN apt-get update && \
    apt-get install -y --no-install-recommends curl git nodejs npm && \
    npm install -g @anthropic-ai/claude-code && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*

RUN git config --global user.email "sandbox@ievo.ai" && \
    git config --global user.name "iEvo Sandbox"

WORKDIR /workspace

ENTRYPOINT ["claude"]
