Update readme and make it clear that python 3.10 is needed

main
Micke Nordin 2 years ago
parent 0ef4d82324
commit d11a18a653
Signed by: micke
GPG Key ID: 0DA0A7A5708FE257

@ -1,3 +1,13 @@
# invent
# Invent
A dead simple docker image scanner
Invent is a dead simple docker image scanner. It will try to scan one or more docker image that it can reach with docker pull and output information about installed packages, operating system and docker inspect information.
## Usage
```
./scanner.py --images debian:latest alpine:latest | jq .
```
The above command will download latest debian and alpine images from docker hub and scan them, and output the information in json format.
## Requirements
The scanner needs python 3.10 and docker installed.

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.10
import argparse
import json
import subprocess

Loading…
Cancel
Save