A minimal Alpine-based Docker image with essential CLI tools for scripting and automation.
- bash - Bourne Again SHell
- curl - Command-line tool for transferring data with URLs
- jq - Command-line JSON processor
docker pull ghcr.io/seillama-io/cli-tools:latestdocker run -it --rm ghcr.io/seillama-io/cli-tools:latestdocker run --rm ghcr.io/seillama-io/cli-tools:latest bash -c "curl -s https://api.github.com/repos/docker/docker | jq .stargazers_count"docker run --rm -v $(pwd):/workspace ghcr.io/seillama-io/cli-tools:latest bash /workspace/your-script.shdocker build -t cli-tools .- Base Image: alpine:latest
- Size: ~10MB (minimal footprint)
- Shell: bash (default)
MIT