Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 350 Bytes

USAGE.md

File metadata and controls

19 lines (15 loc) · 350 Bytes

Usage

With docker

docker build -t pfci:latest .
# Linter
docker run --rm pfci:latest make linter
# Generate PDF
docker run --rm -v %cd%\artifacts:/repo/artifacts pfci:latest make pdf    # Windows
docker run --rm -v $(pwd)/artifacts:/repo/artifacts pfci:latest make pdf  # Linux

Without docker

make linter
make pdf