yamllint/Dockerfile

9 lines
141 B
Text
Raw Normal View History

2019-10-16 10:43:28 +02:00
FROM python:3-alpine
RUN pip install yamllint && \
rm -rf ~/.cache/pip
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]