Skip to content

Commit 2c298eb

Browse files
Version Packages (#671)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c516e32 commit 2c298eb

28 files changed

Lines changed: 34 additions & 33 deletions

File tree

.changeset/retry-rpc-503-upgrade.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

DOCKER_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ All images are published as tags on `cloudflare/sandbox`:
1919
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`:
2020

2121
```dockerfile
22-
FROM cloudflare/sandbox:0.9.3-python
22+
FROM cloudflare/sandbox:0.9.4-python
2323
```
2424

2525
Then configure your `wrangler.toml` to use the image:

bridge/worker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Base image provided by Cloudflare — includes the sandbox control-plane server
22
# that listens on port 3000 and handles all SDK API calls.
3-
FROM docker.io/cloudflare/sandbox:0.9.3
3+
FROM docker.io/cloudflare/sandbox:0.9.4
44

55
# Install tooling for UC workspace operations and agent use.
66
# The base image is Debian-based and includes sh, ls, rm, mkdir, cp, etc.

bridge/worker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The default configuration uses `"lite"` instances with `max_instances: 3`. This
5757
The bridge worker depends on two versioned artifacts that should be kept in sync:
5858

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

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

examples/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.9.3-musl
1+
FROM docker.io/cloudflare/sandbox:0.9.4-musl
22

33
# Documents the ports this application uses (standard Docker convention)
44
EXPOSE 8080

examples/authentication/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.9.3
1+
FROM docker.io/cloudflare/sandbox:0.9.4
22

33
# Documents the ports this application uses (standard Docker convention)
44
EXPOSE 8080

examples/claude-code/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.9.3
1+
FROM docker.io/cloudflare/sandbox:0.9.4
22
RUN npm install -g @anthropic-ai/claude-code
33
ENV COMMAND_TIMEOUT_MS=300000
44
EXPOSE 3000
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM docker.io/cloudflare/sandbox:0.9.3-python
1+
FROM docker.io/cloudflare/sandbox:0.9.4-python

examples/codex-app-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.9.3
1+
FROM docker.io/cloudflare/sandbox:0.9.4
22

33
# Install the Codex CLI globally
44
RUN npm install -g @openai/codex

examples/codex-app-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ When deployed with `interceptHttps = true`, HTTPS requests to blocked hosts also
176176

177177
```
178178
codex-app-server/
179-
├── Dockerfile cloudflare/sandbox:0.9.3 + @openai/codex CLI
179+
├── Dockerfile cloudflare/sandbox:0.9.4 + @openai/codex CLI
180180
├── wrangler.jsonc Worker + Sandbox Durable Object + container config
181181
├── .dev.vars.example Environment variable template
182182
├── src/

0 commit comments

Comments
 (0)