blob: 50c72bb43f0a626abc599d3f95180ce9c51f0f55 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM kibana:4.6.1
RUN apt-get update && apt-get install -y netcat
COPY entrypoint.sh /tmp/entrypoint.sh
RUN chmod +x /tmp/entrypoint.sh
RUN kibana plugin --install elastic/sense
CMD ["/tmp/entrypoint.sh"]
|