FROM node:20-bookworm RUN apt-get update && \ apt-get install -y python3 python3-pip python3-venv && \ rm -rf /var/lib/apt/lists/* RUN npm install -g @anthropic-ai/claude-code RUN python3 -m venv /opt/venv && \ /opt/venv/bin/pip install git+https://git.sinitax.com/sinitax/claude-config-install/ ENV PATH="/opt/venv/bin:$PATH" COPY test/entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh WORKDIR /workspace ENTRYPOINT ["/entrypoint.sh"] CMD ["claude"]