FROM node:20-slim
RUN npm install -g @anthropic-ai/claude-code
WORKDIR /app
COPY run.sh .
RUN chmod +x run.sh
CMD ["bash", "run.sh"]
