From f571e635bf05cdcd7a3f324626ef0e1a4c01a542 Mon Sep 17 00:00:00 2001 From: Rian Finnegan Date: Thu, 23 May 2019 13:18:12 +1000 Subject: [PATCH] Added dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile 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" ]