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 eza from release tarball instead of apt

+4 -6
+4 -6
apps/cf-sandbox/deploy/codex/Dockerfile
··· 31 31 echo 'eval "$(oh-my-posh init bash --config ~/.tokyonight_storm.omp.json)"\n' >> /root/.bashrc 32 32 33 33 34 - RUN mkdir -p /etc/apt/keyrings && \ 35 - wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | gpg --dearmor -o /etc/apt/keyrings/gierens.gpg && \ 36 - echo "deb [signed-by=/etc/apt/keyrings/gierens.gpg] http://deb.gierens.de stable main" | tee /etc/apt/sources.list.d/gierens.list && \ 37 - chmod 644 /etc/apt/keyrings/gierens.gpg /etc/apt/sources.list.d/gierens.list && \ 38 - apt-get update && \ 39 - apt-get install -y eza && \ 34 + RUN wget -qO /tmp/eza.tar.gz "https://github.com/eza-community/eza/releases/latest/download/eza_x86_64-unknown-linux-musl.tar.gz" && \ 35 + tar -xzf /tmp/eza.tar.gz -C /root/.local/bin && \ 36 + chmod +x /root/.local/bin/eza && \ 37 + rm /tmp/eza.tar.gz && \ 40 38 echo 'alias ls="eza -l"' >> ~/.bashrc 41 39 42 40 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 \