Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 492 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 492 Bytes

codenarc-docker

CodeNarc image with reviewdog.

  • codenarc/codenarc:2.2.0-groovy3.0.8
  • reviewdog v0.13.0

Test local

# build image
docker build -t docker.io/asaasdev/codenarc .

# run container
docker run --rm \
    --workdir /testdata \
    -e INPUT_REPORTER=local \
    -e INPUT_FILTER_MODE=nofilter \
    -e INPUT_FAIL_ON_ERROR=false \
    -e INPUT_LEVEL=error \
    -e INPUT_RULESETFILES=file:basic.xml \
    -v $(pwd)/testdata:/testdata \
    docker.io/asaasdev/codenarc