mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-21 22:00:57 -05:00
76fdac3839
* Use github format output * Add few tests * Config yamllint
9 lines
184 B
Docker
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"]
|