mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-07-08 22:55:41 +08:00
21 lines
672 B
Docker
21 lines
672 B
Docker
FROM docker/sandbox-templates:claude-code
|
|
|
|
USER root
|
|
COPY shared/install-cloudcli.sh /tmp/install-cloudcli.sh
|
|
RUN chmod +x /tmp/install-cloudcli.sh && /tmp/install-cloudcli.sh
|
|
|
|
USER agent
|
|
RUN --mount=type=cache,target=/tmp/npm-cache,sharing=locked,mode=0777 \
|
|
npm install -g @cloudcli-ai/cloudcli \
|
|
--cache=/tmp/npm-cache \
|
|
--fetch-retries=5 \
|
|
--fetch-retry-mintimeout=20000 \
|
|
--fetch-retry-maxtimeout=120000 \
|
|
--fetch-timeout=600000 \
|
|
--no-audit \
|
|
--no-fund && \
|
|
cloudcli --version
|
|
|
|
COPY --chown=agent:agent shared/start-cloudcli.sh /home/agent/.cloudcli-start.sh
|
|
RUN echo '. ~/.cloudcli-start.sh' >> /home/agent/.bashrc
|