@cloudflare/sandbox 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/Dockerfile +6 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @cloudflare/sandbox
|
|
2
2
|
|
|
3
|
+
## 0.3.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#98](https://github.com/cloudflare/sandbox-sdk/pull/98) [`d951819`](https://github.com/cloudflare/sandbox-sdk/commit/d951819b18e9cff9ce09851c6855f05039973b65) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Bake wrangler, vite & opencode in base image
|
|
8
|
+
|
|
3
9
|
## 0.3.6
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/Dockerfile
CHANGED
|
@@ -52,6 +52,12 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
|
52
52
|
COPY --from=bun-source /usr/local/bin/bun /usr/local/bin/bun
|
|
53
53
|
COPY --from=bun-source /usr/local/bin/bunx /usr/local/bin/bunx
|
|
54
54
|
|
|
55
|
+
# Install development tools globally
|
|
56
|
+
RUN npm install -g \
|
|
57
|
+
wrangler \
|
|
58
|
+
vite \
|
|
59
|
+
opencode-ai
|
|
60
|
+
|
|
55
61
|
# Install essential Python packages for code execution
|
|
56
62
|
RUN pip3 install --no-cache-dir \
|
|
57
63
|
matplotlib \
|
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ npm install @cloudflare/sandbox
|
|
|
73
73
|
1. **Create a Dockerfile** (temporary requirement, will be removed in future releases):
|
|
74
74
|
|
|
75
75
|
```dockerfile
|
|
76
|
-
FROM docker.io/cloudflare/sandbox:0.3.
|
|
76
|
+
FROM docker.io/cloudflare/sandbox:0.3.7
|
|
77
77
|
|
|
78
78
|
# Expose the ports you want to expose
|
|
79
79
|
EXPOSE 3000
|