Skip to content

Commit be43cff

Browse files
committed
Update pre-installed software
1 parent a451434 commit be43cff

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

src/content/docs/sandbox/concepts/containers.mdx

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,26 @@ Each sandbox runs in an isolated Linux container based on Ubuntu 22.04.
99

1010
## Pre-installed software
1111

12-
The base container comes pre-packaged with a full development environment:
12+
The base container comes with essential development tools:
1313

1414
**Languages and runtimes**:
15-
- Python 3.11 (with pip)
16-
- Node.js 20 LTS (with npm)
17-
- Bun (JavaScript/TypeScript runtime)
15+
- Python 3.11 with pip and venv
16+
- Node.js 20 LTS with npm
17+
- Bun 1.x (JavaScript/TypeScript runtime)
1818

1919
**Python packages**:
20-
- NumPy - Numerical computing
20+
- matplotlib - Plotting and visualization
21+
- numpy - Numerical computing
2122
- pandas - Data analysis
22-
- Matplotlib - Plotting and visualization
23-
- IPython - Interactive Python
23+
- ipython - Interactive Python shell
2424

25-
**Development tools**:
26-
- Git - Version control
27-
- Build tools (gcc, make, pkg-config)
28-
- Text editors (vim, nano)
29-
- Process monitoring (htop, procps)
30-
31-
**Utilities**:
25+
**System utilities**:
3226
- curl, wget - HTTP clients
27+
- git - Version control
3328
- jq - JSON processor
34-
- Network tools (ping, dig, netstat)
35-
- Compression (zip, unzip)
29+
- zip, unzip - Archive tools
30+
- file - File type identification
31+
- procps - Process utilities
3632

3733
Install additional software at runtime or [customize the base image](/sandbox/configuration/dockerfile/):
3834

@@ -43,8 +39,8 @@ pip install scikit-learn tensorflow
4339
# Node.js packages
4440
npm install express
4541

46-
# System packages
47-
apt-get install redis-server
42+
# System packages (requires apt-get update first)
43+
apt-get update && apt-get install -y redis-server
4844
```
4945

5046
## Filesystem

0 commit comments

Comments
 (0)