17 lines
467 B
Docker
17 lines
467 B
Docker
FROM claude-dev-base:latest
|
|
|
|
WORKDIR /repos/nas-tools
|
|
|
|
COPY required-tools.txt /opt/claude-dev/required-tools.txt
|
|
COPY scripts /opt/claude-dev/scripts
|
|
|
|
# LiteLLM translation proxy config
|
|
RUN mkdir -p /etc/claude-dev
|
|
COPY config/litellm.yaml /etc/claude-dev/litellm.yaml
|
|
COPY scripts/start-litellm.sh /opt/claude-dev/scripts/start-litellm.sh
|
|
|
|
RUN chmod +x /opt/claude-dev/scripts/*.sh
|
|
|
|
# Start LiteLLM proxy, then bash
|
|
CMD ["/opt/claude-dev/scripts/start-litellm.sh"]
|