Web service for viewing Debian package info status files (e.g. /var/lib/dpkg/status
) as HTML.
The only dependency is Python 3.7 or later, everything is implemented using the Python standard library.
python3 main.py
Then go to localhost:8000.
Overriding defaults:
python3 main.py --address '0.0.0.0' --port 7001 --dpkg-status-file 'status.real'
Build deploy.dockerfile
as a Docker image to get executable containers that bind to 0.0.0.0
at the port given by environment variable PORT
.
First create an app named debian-version-info
(or something else) on Heroku.
Then deploy as a container:
heroku login
heroku git:remote -a debian-version-info
heroku stack:set container
git push heroku master