the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Install Zerobrew under coder and expose to root

Run the installer as the coder user (create /home/coder first) so
~/.zerobrew is created, then move it to /root and add
/root/.zerobrew/bin to root's PATH. Remove the redundant installer run
in the claude Dockerfile.

+6 -3
-2
apps/cf-sandbox/deploy/claude/Dockerfile
··· 101 101 rm /tmp/zoxide.tar.gz && \ 102 102 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 103 103 104 - RUN curl -fsSL https://zerobrew.rs/install | bash 105 - 106 104 USER coder 107 105 RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 108 106 USER root
+6 -1
apps/cf-sandbox/deploy/codex/Dockerfile
··· 99 99 rm /tmp/zoxide.tar.gz && \ 100 100 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 101 101 102 - RUN curl -fsSL https://zerobrew.rs/install | bash 102 + USER coder 103 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 104 + USER root 105 + 106 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 107 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 103 108 104 109 WORKDIR /workspace 105 110