4 Commits
3.4.0 ... 3.4.1

Author SHA1 Message Date
Ivan Babrou
d91d20f0de Merge pull request #5 from dominikhahn/master
Update alpine v3.3 / curator 3.4.1
2016-02-24 14:38:39 -08:00
Dominik Hahn
f633b8094e Update alpine v3.3 / curator 3.4.1 2016-02-24 16:02:54 +01:00
Ian Babrou
bc55081d44 Merge pull request #4 from DavidWittman/remove-apk-cache
Remove pip and apk cache in Dockerfile
2016-01-08 11:02:35 +00:00
David Wittman
28e14938b7 Remove pip and apk cache in Dockerfile
Reduce the footprint of this repository even further
(from ~50MiB to ~43MiB) by removing pip and the apk cache
at the end of the build.
2016-01-07 13:48:45 -06:00

View File

@@ -1,6 +1,8 @@
FROM alpine:3.2
FROM alpine:3.3
RUN apk --update add python py-pip && \
pip install elasticsearch-curator==3.4.0
pip install elasticsearch-curator==3.4.1 && \
apk del py-pip && \
rm -rf /var/cache/apk/*
ENTRYPOINT ["/usr/bin/curator"]