14 Commits
4.2.1 ... 5.2.0

Author SHA1 Message Date
Ivan Babrou
4c6fbe62a2 Merge pull request #21 from sdurrheimer/master
Update to 5.2.0
2017-09-30 15:26:48 -07:00
Steve Durrheimer
4a6d46bb4c Update to 5.2.0 2017-09-14 09:10:12 +02:00
Ivan Babrou
07e96e9ebb Merge pull request #20 from iyesin/drop-privs
Drop privileges
2017-08-24 14:53:44 +01:00
Ilya Yesin
b8618822c2 Drop privileges
Just drop privileges
2017-08-24 15:51:38 +02:00
Ivan Babrou
8dbe4fe949 Merge pull request #19 from aianus/support_aws_es
Include requests-aws4auth in image for AWS ES support
2017-08-20 17:08:00 -07:00
Alex Ianus
8b21401758 Include requests-aws4auth in image for AWS ES support 2017-08-14 16:11:09 -04:00
Ivan Babrou
90e5da42a3 Merge pull request #17 from hbarrington/master
Update to 5.1.1
2017-06-18 12:55:12 -07:00
Hunter Barrington
69bfe3f7e4 Update Dockerfile 2017-06-16 14:56:25 -04:00
Ivan Babrou
c7693168aa Merge pull request #16 from jasonswat/5.0.1
Update to 5.0.1
2017-04-23 19:33:22 -07:00
Swatniki, Jason
fc9212e6bb Update to 5.0.1 2017-04-13 14:18:14 -07:00
Ivan Babrou
8b88da9ea1 Merge pull request #15 from kim0/patch-1
Upgrade curator to 4.2.6
2017-01-29 21:29:36 -08:00
Ahmed Kamal
6281db1564 Upgrade curator to 4.2.6 2017-01-28 14:03:49 +02:00
Ivan Babrou
e4e4c9deba Merge pull request #14 from davidkarlsen/master
Update to 4.2.4
2016-12-10 23:35:28 -08:00
David J. M. Karlsen
ff903609f0 Update to 4.2.4 2016-12-11 01:33:35 +01:00

View File

@@ -1,8 +1,10 @@
FROM alpine:3.4 FROM alpine:3.4
RUN apk --update add python py-setuptools py-pip && \ RUN apk --update add python py-setuptools py-pip && \
pip install elasticsearch-curator==4.2.1 && \ pip install elasticsearch-curator==5.2.0 && \
pip install requests-aws4auth && \
apk del py-pip && \ apk del py-pip && \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
USER nobody:nobody
ENTRYPOINT ["/usr/bin/curator"] ENTRYPOINT ["/usr/bin/curator"]