6 Commits
5.1.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

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==5.1.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"]