mirror of
https://github.com/Febbweiss/docker-curator.git
synced 2026-03-04 22:35:37 +00:00
11 lines
328 B
Docker
11 lines
328 B
Docker
FROM debian:wheezy
|
|
MAINTAINER Ian Babrou <ibobrik@gmail.com>
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y upgrade && \
|
|
apt-get install --no-install-recommends -y python2.7 python-pip
|
|
|
|
RUN pip install elasticsearch-curator==2.1.1
|
|
|
|
ENTRYPOINT ["/usr/bin/python", "/usr/local/lib/python2.7/dist-packages/curator/curator_script.py"]
|