yamllint/Dockerfile

10 lines
163 B
Text
Raw Normal View History

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