@cloudflare/sandbox 0.0.0-0608f1e → 0.0.0-12bbd12

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 CHANGED
@@ -1,5 +1,63 @@
1
1
  # @cloudflare/sandbox
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#53](https://github.com/cloudflare/sandbox-sdk/pull/53) [`c87db11`](https://github.com/cloudflare/sandbox-sdk/commit/c87db117693a86cfb667bf09fb7720d6a6e0524d) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Improve jupyterlab config to speed up startup
8
+
9
+ ## 0.2.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#51](https://github.com/cloudflare/sandbox-sdk/pull/51) [`4aceb32`](https://github.com/cloudflare/sandbox-sdk/commit/4aceb3215c836f59afcb88b2b325016b3f623f46) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Handle intermittent interpreter failures and decouple jupyter startup
14
+
15
+ ## 0.2.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#49](https://github.com/cloudflare/sandbox-sdk/pull/49) [`d81d2a5`](https://github.com/cloudflare/sandbox-sdk/commit/d81d2a563c9af8947d5444019ed4d6156db563e3) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Implement code interpreter API
20
+
21
+ ## 0.2.0
22
+
23
+ ### Minor Changes
24
+
25
+ - [#47](https://github.com/cloudflare/sandbox-sdk/pull/47) [`8a93d0c`](https://github.com/cloudflare/sandbox-sdk/commit/8a93d0cae18a25bda6506b8b0a08d9e9eb3bb290) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Change default directory to a clean /workspace
26
+
27
+ ## 0.1.4
28
+
29
+ ### Patch Changes
30
+
31
+ - [#46](https://github.com/cloudflare/sandbox-sdk/pull/46) [`7de28be`](https://github.com/cloudflare/sandbox-sdk/commit/7de28be482d9634551572d548c7c4b5842df812d) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Update README
32
+
33
+ - [#44](https://github.com/cloudflare/sandbox-sdk/pull/44) [`215ab49`](https://github.com/cloudflare/sandbox-sdk/commit/215ab494427d7e2a92bb9a25384cb493a221c200) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Update example to use env & cwd
34
+
35
+ - [#42](https://github.com/cloudflare/sandbox-sdk/pull/42) [`bb72193`](https://github.com/cloudflare/sandbox-sdk/commit/bb72193ad75695979bd1132206f481e91fe37325) Thanks [@jonasnobile](https://github.com/jonasnobile)! - Propagate `cwd` and `env` options in `executeCommand`
36
+
37
+ - [#27](https://github.com/cloudflare/sandbox-sdk/pull/27) [`fd5ec7f`](https://github.com/cloudflare/sandbox-sdk/commit/fd5ec7f34bc12b06320a89356c4af07801f52d64) Thanks [@threepointone](https://github.com/threepointone)! - remove yarn and pnpm from the image
38
+
39
+ ## 0.1.3
40
+
41
+ ### Patch Changes
42
+
43
+ - [#32](https://github.com/cloudflare/sandbox-sdk/pull/32) [`1a42464`](https://github.com/cloudflare/sandbox-sdk/commit/1a4246479369c5d0160705caf192aa1816540d52) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Bring back package README
44
+
45
+ ## 0.1.2
46
+
47
+ ### Patch Changes
48
+
49
+ - [#30](https://github.com/cloudflare/sandbox-sdk/pull/30) [`30e5c25`](https://github.com/cloudflare/sandbox-sdk/commit/30e5c25cf7d4b07f9049724206c531e2d5d29d5c) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Remove actions timeout
50
+
51
+ - [#29](https://github.com/cloudflare/sandbox-sdk/pull/29) [`d78508f`](https://github.com/cloudflare/sandbox-sdk/commit/d78508f7287a59e0423edd2999c2c83e9e34ccfd) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Create multi-platform Docker image and switch to Cloudflare official repo
52
+
53
+ ## 0.1.1
54
+
55
+ ### Patch Changes
56
+
57
+ - [`157dde9`](https://github.com/cloudflare/sandbox-sdk/commit/157dde9b1f23e9bb6f3e9c3f0514b639a8813897) Thanks [@threepointone](https://github.com/threepointone)! - update deps
58
+
59
+ - [`a04f6b6`](https://github.com/cloudflare/sandbox-sdk/commit/a04f6b6c0b2ef9e3ce0851b53769f1c10d8c6de6) Thanks [@threepointone](https://github.com/threepointone)! - trigger a build with updated deps
60
+
3
61
  ## 0.1.0
4
62
 
5
63
  ### Minor Changes
package/Dockerfile CHANGED
@@ -1,4 +1,5 @@
1
1
  # Sandbox base image with development tools, Python, Node.js, and Bun
2
+ FROM oven/bun:latest AS bun-source
2
3
  FROM ubuntu:22.04
3
4
 
4
5
  # Prevent interactive prompts during package installation
@@ -30,51 +31,76 @@ RUN apt-get update && apt-get install -y \
30
31
  python3.11 \
31
32
  python3.11-dev \
32
33
  python3-pip \
34
+ python3.11-venv \
33
35
  # Other useful tools
34
36
  sudo \
35
37
  ca-certificates \
36
38
  gnupg \
37
39
  lsb-release \
40
+ strace \
38
41
  && rm -rf /var/lib/apt/lists/*
39
42
 
40
43
  # Set Python 3.11 as default python3
41
44
  RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
42
45
 
43
- # Install Node.js 22 LTS
46
+ # Install Node.js 20 LTS
44
47
  # Using the official NodeSource repository setup script
45
48
  RUN apt-get update && apt-get install -y ca-certificates curl gnupg \
46
49
  && mkdir -p /etc/apt/keyrings \
47
50
  && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
48
- && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
51
+ && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
49
52
  && apt-get update \
50
53
  && apt-get install -y nodejs \
51
54
  && rm -rf /var/lib/apt/lists/*
52
55
 
53
- # Install Bun using the official installation script
54
- RUN curl -fsSL https://bun.sh/install | bash \
55
- && mv /root/.bun/bin/bun /usr/local/bin/bun \
56
- && mv /root/.bun/bin/bunx /usr/local/bin/bunx \
57
- && rm -rf /root/.bun
56
+ # Install Bun from official image (avoids architecture compatibility issues)
57
+ COPY --from=bun-source /usr/local/bin/bun /usr/local/bin/bun
58
+ COPY --from=bun-source /usr/local/bin/bunx /usr/local/bin/bunx
58
59
 
59
- # Install global npm packages as root
60
- RUN npm install -g yarn pnpm
60
+ # Install minimal Jupyter components
61
+ RUN pip3 install --no-cache-dir \
62
+ jupyter-server \
63
+ jupyter-client \
64
+ ipykernel \
65
+ orjson \
66
+ && python3 -m ipykernel install --user --name python3
61
67
 
62
- # Set up working directory
63
- WORKDIR /app
68
+ # Install scientific packages
69
+ RUN pip3 install --no-cache-dir \
70
+ matplotlib \
71
+ numpy \
72
+ pandas \
73
+ seaborn
74
+
75
+ # Install JavaScript kernel (ijavascript) - using E2B's fork
76
+ RUN npm install -g --unsafe-perm git+https://github.com/e2b-dev/ijavascript.git \
77
+ && ijsinstall --install=global
78
+
79
+ # Set up container server directory
80
+ WORKDIR /container-server
64
81
 
65
82
  # Verify installations
66
83
  RUN python3 --version && \
67
84
  node --version && \
68
85
  npm --version && \
69
86
  bun --version && \
70
- yarn --version && \
71
- pnpm --version
87
+ jupyter --version && \
88
+ jupyter kernelspec list
89
+
90
+ # Copy container source files to server directory
91
+ COPY container_src/package.json ./
92
+ RUN bun install
72
93
 
73
- # Copy container source files
74
94
  COPY container_src/ ./
75
95
 
76
- # Expose the application port
77
- EXPOSE 3000
96
+ # Create clean workspace directory for users
97
+ RUN mkdir -p /workspace
98
+
99
+ # Expose the application port (3000 for control, 8888 for Jupyter)
100
+ EXPOSE 3000 8888
101
+
102
+ # Make startup script executable
103
+ RUN chmod +x startup.sh
78
104
 
79
- # Run the application
80
- CMD ["bun", "index.ts"]
105
+ # Use startup script
106
+ CMD ["./startup.sh"]