yamllint/Dockerfile
Ilir Bekteshi 76fdac3839
Use yamllint github format to set file annotations on errors & warnings (#12)
* Use github format output

* Add few tests

* Config yamllint
2020-10-22 12:23:39 +02:00

9 lines
184 B
Docker

FROM python:3-alpine
RUN pip install 'yamllint>=1.25.0' && \
apk add --no-cache bash && \
rm -rf ~/.cache/pip
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]