Adding upstream version 0.13.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
1805ece79d
commit
d8f166e6bb
167 changed files with 15302 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
# User-facing Dockerfile. For development, see Dockerfile.dev and ./run_tests.sh -h
|
||||
|
||||
# To lint your current working directory:
|
||||
# docker run -v $(pwd):/repo jorisroovers/gitlint
|
||||
|
||||
# With arguments:
|
||||
# docker run -v $(pwd):/repo jorisroovers/gitlint --debug --ignore T1
|
||||
|
||||
FROM python:3.8-alpine
|
||||
ARG GITLINT_VERSION
|
||||
|
||||
RUN apk add git
|
||||
RUN pip install gitlint==$GITLINT_VERSION
|
||||
|
||||
ENTRYPOINT ["gitlint", "--target", "/repo"]
|
Loading…
Add table
Add a link
Reference in a new issue