diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2a29181 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:2-slim + +COPY . /usr/src/elasticstat/ +WORKDIR /usr/src/elasticstat/ + +RUN pip install --no-cache . + +ENTRYPOINT [ "python", "./elasticstat/elasticstat.py" ] +CMD [ "--help" ]