mirror of
https://github.com/deviantony/docker-elk.git
synced 2026-01-03 11:38:05 +01:00
14 lines
258 B
Docker
14 lines
258 B
Docker
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"]
|