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.

Add sudo and zerobrew setup in Dockerfiles

+164 -34
+10 -2
apps/cf-sandbox/deploy/amp/Dockerfile
··· 21 21 wget \ 22 22 locales-all \ 23 23 s3fs \ 24 - fontconfig 24 + fontconfig \ 25 + sudo \ 26 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 25 27 26 28 ENV LC_ALL en_US.UTF-8 27 29 ENV LANG en_US.UTF-8 ··· 97 99 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 98 100 99 101 100 - RUN curl -fsSL https://zerobrew.rs/install | bash 102 + 103 + USER coder 104 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 105 + USER root 106 + 107 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 108 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 101 109 102 110 WORKDIR /workspace 103 111
+10 -1
apps/cf-sandbox/deploy/claude/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 99 101 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 100 102 101 103 RUN curl -fsSL https://zerobrew.rs/install | bash 104 + 105 + USER coder 106 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 107 + USER root 108 + 109 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 110 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 102 111 103 112 WORKDIR /workspace 104 113
+3 -1
apps/cf-sandbox/deploy/codex/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8
+10 -2
apps/cf-sandbox/deploy/copilot/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 98 100 rm /tmp/zoxide.tar.gz && \ 99 101 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 100 102 101 - RUN curl -fsSL https://zerobrew.rs/install | bash 103 + USER coder 104 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 105 + USER root 106 + 107 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 108 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 109 + 102 110 103 111 WORKDIR /workspace 104 112
+10 -2
apps/cf-sandbox/deploy/crush/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 92 94 rm /tmp/zoxide.tar.gz && \ 93 95 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 94 96 95 - RUN curl -fsSL https://zerobrew.rs/install | bash 97 + USER coder 98 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 99 + USER root 100 + 101 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 102 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 103 + 96 104 97 105 WORKDIR /workspace 98 106
+10 -2
apps/cf-sandbox/deploy/gemini/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 98 100 rm /tmp/zoxide.tar.gz && \ 99 101 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 100 102 101 - RUN curl -fsSL https://zerobrew.rs/install | bash 103 + USER coder 104 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 105 + USER root 106 + 107 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 108 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 109 + 102 110 103 111 WORKDIR /workspace 104 112
+9 -2
apps/cf-sandbox/deploy/kilo/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 98 100 rm /tmp/zoxide.tar.gz && \ 99 101 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 100 102 101 - RUN curl -fsSL https://zerobrew.rs/install | bash 103 + USER coder 104 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 105 + USER root 106 + 107 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 108 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 102 109 103 110 WORKDIR /workspace 104 111
+9 -2
apps/cf-sandbox/deploy/kiro/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 98 100 rm /tmp/zoxide.tar.gz && \ 99 101 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 100 102 101 - RUN curl -fsSL https://zerobrew.rs/install | bash 103 + USER coder 104 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 105 + USER root 106 + 107 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 108 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 102 109 103 110 WORKDIR /workspace 104 111
+10 -2
apps/cf-sandbox/deploy/mise/Dockerfile
··· 2 2 3 3 ARG TARGETARCH 4 4 5 - RUN apt-get update -y && apt-get install -y curl git unzip tmux build-essential gawk sed procps wget locales-all s3fs fontconfig 5 + RUN apt-get update -y && apt-get install -y curl git unzip tmux build-essential gawk sed procps wget locales-all s3fs fontconfig \ 6 + sudo \ 7 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 6 8 7 9 ENV LC_ALL en_US.UTF-8 8 10 ENV LANG en_US.UTF-8 ··· 67 69 rm /tmp/zoxide.tar.gz && \ 68 70 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 69 71 70 - RUN curl -fsSL https://zerobrew.rs/install | bash 72 + USER coder 73 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 74 + USER root 75 + 76 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 77 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 78 + 71 79 72 80 WORKDIR /workspace 73 81
+10 -2
apps/cf-sandbox/deploy/nix/Dockerfile
··· 6 6 7 7 RUN apt-get update -y 8 8 9 - RUN apt-get install -y curl git unzip tmux build-essential gawk sed procps wget locales-all s3fs fontconfig 9 + RUN apt-get install -y curl git unzip tmux build-essential gawk sed procps wget locales-all s3fs fontconfig \ 10 + sudo \ 11 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 10 12 11 13 ENV LC_ALL en_US.UTF-8 12 14 ENV LANG en_US.UTF-8 ··· 88 90 rm /tmp/zoxide.tar.gz && \ 89 91 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 90 92 91 - RUN curl -fsSL https://zerobrew.rs/install | bash 93 + USER coder 94 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 95 + USER root 96 + 97 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 98 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 99 + 92 100 93 101 WORKDIR /workspace 94 102
+9 -2
apps/cf-sandbox/deploy/nullclaw/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 104 106 rm /tmp/zoxide.tar.gz && \ 105 107 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 106 108 107 - RUN curl -fsSL https://zerobrew.rs/install | bash 109 + USER coder 110 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 111 + USER root 112 + 113 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 114 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 108 115 109 116 WORKDIR /workspace 110 117
+9 -2
apps/cf-sandbox/deploy/openclaw/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 98 100 rm /tmp/zoxide.tar.gz && \ 99 101 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 100 102 101 - RUN curl -fsSL https://zerobrew.rs/install | bash 103 + USER coder 104 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 105 + USER root 106 + 107 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 108 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 102 109 103 110 WORKDIR /workspace 104 111
+9 -2
apps/cf-sandbox/deploy/opencode/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 97 99 rm /tmp/zoxide.tar.gz && \ 98 100 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 99 101 100 - 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 101 108 102 109 WORKDIR /workspace 103 110
+9 -2
apps/cf-sandbox/deploy/opencrust/Dockerfile
··· 20 20 wget \ 21 21 locales-all \ 22 22 s3fs \ 23 - fontconfig 23 + fontconfig \ 24 + sudo \ 25 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 24 26 25 27 ENV LC_ALL en_US.UTF-8 26 28 ENV LANG en_US.UTF-8 ··· 100 102 rm /tmp/zoxide.tar.gz && \ 101 103 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 102 104 103 - RUN curl -fsSL https://zerobrew.rs/install | bash 105 + USER coder 106 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 107 + USER root 108 + 109 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 110 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 104 111 105 112 WORKDIR /workspace 106 113
+9 -2
apps/cf-sandbox/deploy/picoclaw/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 108 110 rm /tmp/zoxide.tar.gz && \ 109 111 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 110 112 111 - RUN curl -fsSL https://zerobrew.rs/install | bash 113 + USER coder 114 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 115 + USER root 116 + 117 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 118 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 112 119 113 120 WORKDIR /workspace 114 121
+9 -2
apps/cf-sandbox/deploy/pkgx/Dockerfile
··· 15 15 wget \ 16 16 locales-all \ 17 17 s3fs \ 18 - fontconfig 18 + fontconfig \ 19 + sudo \ 20 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 19 21 20 22 ENV LC_ALL en_US.UTF-8 21 23 ENV LANG en_US.UTF-8 ··· 75 77 rm /tmp/zoxide.tar.gz && \ 76 78 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 77 79 78 - RUN curl -fsSL https://zerobrew.rs/install | bash 80 + USER coder 81 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 82 + USER root 83 + 84 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 85 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 79 86 80 87 WORKDIR /workspace 81 88
+10 -2
apps/cf-sandbox/deploy/wasmer/Dockerfile
··· 22 22 wget \ 23 23 locales-all \ 24 24 s3fs \ 25 - fontconfig 25 + fontconfig \ 26 + sudo \ 27 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 26 28 27 29 ENV LC_ALL en_US.UTF-8 28 30 ENV LANG en_US.UTF-8 ··· 99 101 rm /tmp/zoxide.tar.gz && \ 100 102 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 101 103 102 - RUN curl -fsSL https://zerobrew.rs/install | bash 104 + 105 + USER coder 106 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 107 + USER root 108 + 109 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 110 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 103 111 104 112 WORKDIR /workspace 105 113
+9 -2
apps/cf-sandbox/deploy/zeroclaw/Dockerfile
··· 20 20 wget \ 21 21 locales-all \ 22 22 s3fs \ 23 - fontconfig 23 + fontconfig \ 24 + sudo \ 25 + && echo "coder ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/coder 24 26 25 27 ENV LC_ALL en_US.UTF-8 26 28 ENV LANG en_US.UTF-8 ··· 101 103 rm /tmp/zoxide.tar.gz && \ 102 104 echo 'eval "$(zoxide init bash)"' >> ~/.bashrc 103 105 104 - RUN curl -fsSL https://zerobrew.rs/install | bash 106 + USER coder 107 + RUN mkdir -p /home/coder && curl -fsSL https://zerobrew.rs/install | bash 108 + USER root 109 + 110 + RUN mv /home/coder/.zerobrew ~/.zerobrew && \ 111 + echo 'export PATH=$PATH:/root/.zerobrew/bin' >> ~/.bashrc 105 112 106 113 WORKDIR /workspace 107 114