Agent Image Tools
Reference guide for the development tools, utilities, and runtime versions pre-installed in the agent and agent-act container images used by the firewall.
Overview
Section titled “Overview”The firewall uses two main container image types for running user commands:
agent(default): Lightweight Ubuntu 22.04-based image with essential dev toolsagent-act: GitHub Actions runner-compatible image based on Ubuntu 24.04
Image Selection
Section titled “Image Selection”Use the --agent-image flag to choose which image to use:
# Default agent image (lightweight)sudo awf --allow-domains github.com -- node --version
# GitHub Actions-compatible imagesudo awf --agent-image act --allow-domains github.com -- node --versionBase Images
Section titled “Base Images”| Image | Base | Purpose |
|---|---|---|
agent | ubuntu:22.04 | Minimal development environment with Node.js, Python, git |
agent-act | catthehacker/ubuntu:act-24.04 | GitHub Actions runner subset with multiple runtime versions |
Verifying Tools Locally
Section titled “Verifying Tools Locally”Check installed tools and versions by running bash in the container:
# Verify tools in agent imagesudo awf --allow-domains '' -- bash -c 'node --version && python3 --version && git --version'
# Verify tools in agent-act imagesudo awf --agent-image act --allow-domains '' -- bash -c 'which -a node && node --version'
# Interactive explorationsudo awf --tty --allow-domains '' -- bashAgent Image Tools
Section titled “Agent Image Tools”The default agent image (based on Ubuntu 22.04) includes the following pre-installed tools:
| Tool | Version | Package | Notes |
|---|---|---|---|
| Node.js | v22.22.0 | — | Includes npm, npx |
| npm | 10.9.4 | — | — |
| npx | 10.9.4 | — | — |
| Python | 3.10.12 | — | No pip installed by default |
| git | 2.34.1 | git | Standard git client |
| GitHub CLI | 2.4.0+dfsg1 | gh-cli | gh command for GitHub API |
| curl | 7.81.0 | curl | HTTP client |
| dig | 9.18.39 | dnsutils | DNS lookup utility |
| ifconfig | 2.10-alpha | net-tools | Network interface config |
| netcat | 1.218 | netcat-openbsd | TCP/UDP connections |
| iptables | 1.8.7 | iptables | Firewall rules (host-level control) |
| gosu | 1.14 | gosu | Run commands as other users |
| capsh | — | libcap2-bin | Capability management |
| gnupg | 2.2.27 | gnupg | GPG encryption |
| ca-certificates | — | ca-certificates | Trusted root certificates |
Agent-Act Image Tools
Section titled “Agent-Act Image Tools”The agent-act image (based on Ubuntu 24.04) includes the following pre-installed tools:
| Tool | Version | Package | Notes |
|---|---|---|---|
| Node.js | v18.20.8 | — | Default in PATH (from /opt/hostedtoolcache) |
| npm | 10.8.2 | — | Bundled with Node.js 18 |
| npx | 10.8.2 | — | Bundled with Node.js 18 |
| corepack | 0.32.0 | — | Yarn/pnpm manager |
| Node.js (system) | v22.22.0 | — | Alternative system installation at /usr/bin/node |
| Python | 3.12.3 | — | Includes pip 24.0 |
| pip | 24.0 | — | Python package manager |
| git | 2.52.0 | git | Standard git client |
| GitHub CLI | 2.45.0 | gh-cli | gh command for GitHub API |
| git-lfs | 3.7.1 | git-lfs | Git Large File Storage |
| gcc | 13.3.0 | build-essential | C compiler |
| g++ | 13.3.0 | build-essential | C++ compiler |
| make | 4.3 | build-essential | Build automation |
| build-essential | — | build-essential | Metapackage with common build tools |
| curl | 8.5.0 | curl | HTTP client |
| dig | 9.18.39 | dnsutils | DNS lookup utility |
| ifconfig | 2.10 | net-tools | Network interface config |
| netcat | 1.226 | netcat-openbsd | TCP/UDP connections |
| iptables | 1.8.10 | iptables | Firewall rules (host-level control) |
| gosu | 1.17 | gosu | Run commands as other users |
| capsh | — | libcap2-bin | Capability management |
| jq | 1.6 | jq | JSON processor |
| gnupg | — | gnupg | GPG encryption |
| ca-certificates | — | ca-certificates | Trusted root certificates |
Custom Base Images
Section titled “Custom Base Images”You can use custom base images with --agent-image:
# Use a specific version of the act imagesudo awf \ --agent-image catthehacker/ubuntu:act-24.04 \ --build-local \ --allow-domains github.com \ -- npm test
# Use your own custom imagesudo awf \ --agent-image myorg/my-base:latest \ --build-local \ --allow-domains github.com \ -- ./my-script.shSee Also
Section titled “See Also”- CLI Reference - Complete
--agent-imageflag documentation - Usage Guide - Examples of using different agent images
- catthehacker/docker_images - Source repository for GitHub Actions runner images