The base template is a minimal Ubuntu 22.04 image with git, curl,
wget, jq, build-essential, openssh-client, and unzip. Pick it
when you only need shell utilities or want the smallest possible image to
install your own toolchain on top of.
What you’ll learn
- Picking
template="base" for shell-only workloads
- Running a multi-tool pipeline (
curl → jq) inside a sandbox
- Inspecting what ships in the
base image with which / --version
Prerequisites
Code
Expected output
base does not ship Python or Node. If you apt-get install python3 at
runtime it will work, but you’ll wait for the install on every sandbox boot
— picking template="python" or template="node" is faster.