https://github.com/geekmasher/pyre-check-docker
Pyre-Check Docker image for Python Security Static Coded Analysis
https://github.com/geekmasher/pyre-check-docker
Last synced: 4 months ago
JSON representation
Pyre-Check Docker image for Python Security Static Coded Analysis
- Host: GitHub
- URL: https://github.com/geekmasher/pyre-check-docker
- Owner: GeekMasher
- License: mit
- Created: 2020-01-05T02:55:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-08T06:38:07.000Z (over 6 years ago)
- Last Synced: 2025-03-23T22:39:20.151Z (about 1 year ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pyre-Check Docker
[Pyre-Check](https://github.com/facebook/pyre-check) is an open source tool developed and maintained by Facebook to perform Static Code Analysis (SCA) on Python applications.
Primarily this tool is used for Type hinting/checking in Python 3.5+ but Facebook also use the power of the AST (Abstract Syntax Tree) parser to do security testing as well.
This Docker image focuses purely on the Security testing side of this tool.
## Build
```bash
docker build -t "pyre-check" .
```
## Run
```bash
# pull image
docker pull geekmasher/pyre-check
# run image passing in the source code folder and the folder used for results
docker run -v source:/data/source -v results:/data/results pyre-check
```