yamllint/Dockerfile

10 lines
163 B
Docker
Raw Normal View History

2019-10-16 04:43:28 -04:00
FROM python:3-alpine
RUN pip install yamllint && \
2020-02-17 20:18:15 -05:00
apk add bash && \
2019-10-16 04:43:28 -04:00
rm -rf ~/.cache/pip
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]