Initial commit
continuous-integration/drone Build is passing

This commit is contained in:
2022-08-03 14:20:13 +03:00
commit 08f7f6133a
4 changed files with 46 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3-alpine
RUN apk add git
RUN pip install gitlint
ADD gitlint.ini /config/gitlint.ini
WORKDIR /apps
ENTRYPOINT ["gitlint", "--config", "/config/gitlint.ini"]