mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-04-04 12:47:28 +00:00
12 lines
343 B
Docker
12 lines
343 B
Docker
FROM docker/sandbox-templates:gemini
|
|
|
|
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 npm install -g @cloudcli-ai/cloudcli
|
|
|
|
COPY shared/start-cloudcli.sh /home/agent/.cloudcli-start.sh
|
|
RUN echo '. ~/.cloudcli-start.sh' >> /home/agent/.bashrc
|