Dockerfile 260 B

12345678910
  1. FROM alpine:3.6
  2. RUN apk --no-cache add python py-setuptools py-pip && \
  3. pip install elasticsearch-curator==5.4.0 && \
  4. pip install boto3 && \
  5. pip install requests-aws4auth && \
  6. apk del py-pip
  7. USER nobody:nobody
  8. ENTRYPOINT ["/usr/bin/curator"]