Skip to content

Commit 54574fa

Browse files
Merge pull request #66 from asaasdev/DVT-1005-exibir-priority-violacoes-codenarc-corrigir-falsos-positivos
feat(DVT-1005): corrige falsos positivos e exibe priority das violacoes CodeNarc
2 parents 33633c7 + 76d59b0 commit 54574fa

File tree

5 files changed

+404
-235
lines changed

5 files changed

+404
-235
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
FROM codenarc/codenarc:3.6.0-groovy3.0.23
22

33
RUN DEBIAN_FRONTEND=noninteractive \
4-
apt-get update && \
5-
apt-get install --no-install-recommends -y wget git && \
6-
apt-get clean && rm -rf /var/lib/apt/lists/*
4+
apt-get update && \
5+
apt-get install --no-install-recommends -y wget git jq && \
6+
apt-get clean && rm -rf /var/lib/apt/lists/*
77

88
ENV REVIEWDOG_VERSION=v0.13.0
99

1010
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
11-
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
11+
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}
1212

1313
COPY entrypoint.sh /entrypoint.sh
14+
RUN chmod +x /entrypoint.sh
1415

1516
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)