Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DOCKER_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ All images are published as tags on `cloudflare/sandbox`:
These images are designed to be used with the [`@cloudflare/sandbox`](https://www.npmjs.com/package/@cloudflare/sandbox) SDK. Reference them in your project's `Dockerfile`:

```dockerfile
FROM cloudflare/sandbox:0.12.8-python
FROM cloudflare/sandbox:0.12.9-python
```

Then configure your `wrangler.toml` to use the image:
Expand Down
2 changes: 1 addition & 1 deletion bridge/worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base image provided by Cloudflare — includes the sandbox control-plane server
# that listens on port 3000 and handles all SDK API calls.
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Install tooling for UC workspace operations and agent use.
# The base image is Debian-based and includes sh, ls, rm, mkdir, cp, etc.
Expand Down
2 changes: 1 addition & 1 deletion bridge/worker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The default configuration uses `"lite"` instances with `max_instances: 3`. This
The bridge worker depends on two versioned artifacts that should be kept in sync:

1. **`@cloudflare/sandbox`** — the SDK package in `package.json`. Bump the version (or use `"*"` to track latest) and run `npm install`.
2. **`cloudflare/sandbox` Docker image** — the base image tag in `Dockerfile` (e.g. `FROM docker.io/cloudflare/sandbox:0.12.8`). Update the tag to match the SDK version.
2. **`cloudflare/sandbox` Docker image** — the base image tag in `Dockerfile` (e.g. `FROM docker.io/cloudflare/sandbox:0.12.9`). Update the tag to match the SDK version.

Both versions should match — the SDK and container image are released together. After updating:

Expand Down
2 changes: 1 addition & 1 deletion examples/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8-musl
FROM docker.io/cloudflare/sandbox:0.12.9-musl

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/authentication/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/claude-code/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9
RUN npm install -g @anthropic-ai/claude-code
ENV COMMAND_TIMEOUT_MS=300000
EXPOSE 3000
2 changes: 1 addition & 1 deletion examples/code-interpreter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM docker.io/cloudflare/sandbox:0.12.8-python
FROM docker.io/cloudflare/sandbox:0.12.9-python
2 changes: 1 addition & 1 deletion examples/codex-app-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Install the Codex CLI globally
RUN npm install -g @openai/codex
Expand Down
2 changes: 1 addition & 1 deletion examples/codex-app-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ When deployed with `interceptHttps = true`, HTTPS requests to blocked hosts also

```
codex-app-server/
├── Dockerfile cloudflare/sandbox:0.12.8 + @openai/codex CLI
├── Dockerfile cloudflare/sandbox:0.12.9 + @openai/codex CLI
├── wrangler.jsonc Worker + Sandbox Durable Object + container config
├── .dev.vars.example Environment variable template
├── src/
Expand Down
2 changes: 1 addition & 1 deletion examples/codex/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9
RUN npm install -g @openai/codex
ENV COMMAND_TIMEOUT_MS=300000
EXPOSE 3000
2 changes: 1 addition & 1 deletion examples/collaborative-terminal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/git-repo-per-sandbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/openai-agents/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion examples/opencode/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8-opencode
FROM docker.io/cloudflare/sandbox:0.12.9-opencode

# Clone sample project for the web UI to work with
RUN git clone --depth 1 https://github.com/cloudflare/agents.git /home/user/agents
Expand Down
2 changes: 1 addition & 1 deletion examples/s3-mount/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# mount-s3 (mountpoint-s3) — pinned version with SHA-256 verification per architecture
ARG MOUNT_S3_VERSION=1.22.3
Expand Down
2 changes: 1 addition & 1 deletion examples/time-machine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Documents the ports this application uses (standard Docker convention)
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/typescript-validator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Cloudflare sandbox as base
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

# Install esbuild for TypeScript bundling
RUN npm install -g esbuild
Expand Down
2 changes: 1 addition & 1 deletion examples/vite-sandbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

WORKDIR /app
COPY sandbox-app/package.json ./
Expand Down
2 changes: 1 addition & 1 deletion examples/websocket-tunnel/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.12.8
FROM docker.io/cloudflare/sandbox:0.12.9

COPY server.js /app/server.js

Expand Down
Loading