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.

Combine oh-my-posh install and bump Node

Also install @anthropic-ai/claude-code globally in the docker image

+8 -10
+2 -3
apps/cf-sandbox/deploy/amp/Dockerfile
··· 27 27 ENV LANG en_US.UTF-8 28 28 ENV LANGUAGE en_US.UTF-8 29 29 30 - RUN curl -s https://ohmyposh.dev/install.sh | bash -s 31 - 32 - RUN curl -s https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/tokyonight_storm.omp.json | tee /root/.tokyonight_storm.omp.json >/dev/null && \ 30 + RUN curl -s https://ohmyposh.dev/install.sh | bash -s && \ 31 + curl -s https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/tokyonight_storm.omp.json | tee /root/.tokyonight_storm.omp.json >/dev/null && \ 33 32 echo 'eval "$(oh-my-posh init bash --config ~/.tokyonight_storm.omp.json)"' >> /root/.bashrc 34 33 35 34 RUN git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git && \
+2 -3
apps/cf-sandbox/deploy/claude/Dockerfile
··· 28 28 ENV LANG en_US.UTF-8 29 29 ENV LANGUAGE en_US.UTF-8 30 30 31 - RUN curl -s https://ohmyposh.dev/install.sh | bash -s 32 - 33 - RUN curl -s https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/tokyonight_storm.omp.json | tee /root/.tokyonight_storm.omp.json >/dev/null && \ 31 + RUN curl -s https://ohmyposh.dev/install.sh | bash -s && \ 32 + curl -s https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/tokyonight_storm.omp.json | tee /root/.tokyonight_storm.omp.json >/dev/null && \ 34 33 echo 'eval "$(oh-my-posh init bash --config ~/.tokyonight_storm.omp.json)"' >> /root/.bashrc 35 34 36 35
+4 -4
apps/cf-sandbox/deploy/docker/Dockerfile
··· 63 63 64 64 RUN chmod a+x /usr/bin/banner.sh 65 65 66 - COPY --from=docker.io/library/node:22 /usr/local/bin/node /usr/local/bin/node 66 + COPY --from=docker.io/library/node:24 /usr/local/bin/node /usr/local/bin/node 67 67 68 - COPY --from=docker.io/library/node:22 /usr/local/include /usr/local/include 68 + COPY --from=docker.io/library/node:24 /usr/local/include /usr/local/include 69 69 70 - COPY --from=docker.io/library/node:22 /usr/local/lib/node_modules /usr/local/lib/node_modules 70 + COPY --from=docker.io/library/node:24 /usr/local/lib/node_modules /usr/local/lib/node_modules 71 71 72 72 RUN printf '#!/bin/sh\nexec node /usr/local/lib/node_modules/npm/bin/npm-cli.js "$@"\n' > /usr/local/bin/npm && \ 73 73 printf '#!/bin/sh\nexec node /usr/local/lib/node_modules/npm/bin/npx-cli.js "$@"\n' > /usr/local/bin/npx && \ ··· 119 119 120 120 ENV PATH "/root/.deno/bin:/home/coder/.local/bin:/home/coder/.npm-global/bin:${PATH}" 121 121 122 - RUN npm install -g pm2 122 + RUN npm install -g @anthropic-ai/claude-code pm2 123 123 124 124 RUN curl -fsSL https://deno.land/install.sh | sh 125 125