Dockerfile 258 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
FROM alpine:3.8

ENV CURATOR_VERSION=5.5.4

RUN apk --update add --no-cache tini python py-pip \
  && pip install elasticsearch-curator==${CURATOR_VERSION}

COPY entrypoint.sh /

WORKDIR /usr/share/curator
COPY config ./config

ENTRYPOINT ["/entrypoint.sh"]