diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..768fb0d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.5-alpine3.8 + +WORKDIR /yamllint +COPY . . + +RUN python setup.py install + +WORKDIR / + +ENTRYPOINT [ "yamllint" ]