1
0

Dockerfile 234 B

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