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 python3 and build-essential

Also move openclaw install to npm (remove the separate curl installer).
Use an explicit /root path for Deno/local bins and append the PATH line
to ~/.bashrc so interactive shells pick it up.

+7 -4
+7 -4
apps/cf-sandbox/Dockerfile
··· 10 10 curl \ 11 11 ca-certificates \ 12 12 gnupg \ 13 - unzip 13 + unzip \ 14 + python3 \ 15 + build-essential 14 16 15 17 RUN curl -sLf --retry 3 --tlsv1.2 --proto "=https" 'https://packages.doppler.com/public/cli/gpg.DE2A7741A397C129.key' | gpg --dearmor | tee /etc/apt/keyrings/doppler.gpg >/dev/null \ 16 18 && echo "deb [signed-by=/etc/apt/keyrings/doppler.gpg] https://packages.doppler.com/public/cli/deb/debian any-version main" | tee /etc/apt/sources.list.d/doppler-cli.list \ 17 19 && apt-get update && apt-get install -y doppler && doppler --version 18 20 19 21 RUN curl -fsSL https://tailscale.com/install.sh | sh 20 - 21 - RUN curl -fsSL https://openclaw.ai/install.sh | bash || true 22 22 23 23 RUN curl -fsSL https://cli.kiro.dev/install | bash 24 24 25 25 RUN npm install -g \ 26 + openclaw \ 26 27 @anthropic-ai/claude-code \ 27 28 @openai/codex \ 28 29 @google/gemini-cli \ ··· 37 38 38 39 RUN curl -fsSL https://bun.sh/install | bash 39 40 40 - ENV PATH="${HOME}/.deno/bin:${HOME}/.local/bin:${PATH}" 41 + ENV PATH="/root/.deno/bin:/root/.local/bin:${PATH}" 42 + 43 + RUN echo 'PATH="$HOME/.deno/bin:$HOME/.local/bin:$PATH"' >> ~/.bashrc 41 44 42 45 WORKDIR /workspace 43 46