Python dependency vulnerability checker
570
This repo uses the Skjold package to check the dependencies for a project against the following advisory sources:
hub.docker.com/repository/docker/desholmes/python-vulnerability-checker.
make setup: to copy .env into place (.env-dist > .env)<GITHUB_TOKEN> in .env<requirements path>: Path to the requirements file<reports path>: Path to the where the skjold-report.json report file should be saveddocker run --rm -it \
-e GITHUB_TOKEN=$(GITHUB_TOKEN) \
-v <requirements path>/requirements.txt:/usr/src/app/requirements.txt \
-v <reports path>/skjold-report.json:/usr/src/app/skjold-report.json \
desholmes/python-vulnerability-checker:1.0.0
make setup: to copy .env into place (.env-dist > .env)public access permissions and replace <GITHUB_TOKEN> in .envmake build to create the docker image based on the details of the Docker Image Details section abovemake run-pass to the docker container using the contents of the ./test_pass_projectNo vulnerable packages found! message and exits with a 0make run-fail to the docker container using the contents of the ./test_fail_projectFound 2 vulnerable packages! message and exits with a 11.0.1: Added docker hub link to docs1.0.0: Base repoContent type
Image
Digest
Size
37.7 MB
Last updated
over 6 years ago
docker pull desholmes/python-vulnerability-checker