diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..55c33b7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM alpine:3.5 + +RUN apk add --no-cache python py-pip ca-certificates && \ + pip install --upgrade setuptools + +ADD . /src + +WORKDIR /src + +RUN python setup.py install + +ENTRYPOINT ["gixy"] \ No newline at end of file