Files
docker-curator/Dockerfile
Christian Winther db3add8393 Update to 4.2.1
2016-11-18 10:47:41 +01:00

9 lines
206 B
Docker

FROM alpine:3.4
RUN apk --update add python py-setuptools py-pip && \
pip install elasticsearch-curator==4.2.1 && \
apk del py-pip && \
rm -rf /var/cache/apk/*
ENTRYPOINT ["/usr/bin/curator"]