yamllint/Dockerfile

10 lines
197 B
Docker
Raw Normal View History

2019-10-16 04:43:28 -04:00
FROM python:3-alpine
RUN apk add --no-cache bash gcc musl-dev && \
pip install 'yamllint>=1.25.0' && \
2019-10-16 04:43:28 -04:00
rm -rf ~/.cache/pip
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]