An open API service indexing awesome lists of open source software.

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

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
```