d9f4241c9d
Deploy Dashboard (Dev) / Backend Tests (push) Successful in 1m16s
Deploy Claude Dev (Dev) / deploy-claude-dev-dev (push) Has been cancelled
Deploy Dashboard (Dev) / Build Dev Image (push) Failing after 11m48s
Deploy Dashboard (Dev) / Frontend Tests (push) Failing after 13m30s
Deploy Dashboard (Dev) / Deploy to Dev (push) Has been skipped
15 lines
369 B
Docker
15 lines
369 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
|
|
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
|
|
|
|
CMD ["bash"]
|