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.

Ignore failing nix profile adds in Dockerfile

Append '|| true' to nix profile add commands so the build doesn't
fail if the profiles already exist or the command is unsupported in
the build environment

+2 -2
+2 -2
apps/cf-sandbox/deploy/nix/Dockerfile
··· 53 53 RUN nix profile add \ 54 54 --experimental-features "nix-command flakes" \ 55 55 --accept-flake-config \ 56 - 'github:flox/flox/latest' 56 + 'github:flox/flox/latest' || true 57 57 58 - RUN nix profile add nixpkgs#devenv 58 + RUN nix profile add nixpkgs#devenv || true 59 59 60 60 ENV PATH="/root/.local/bin:${PATH}" 61 61