mirror of
https://github.com/deviantony/docker-elk.git
synced 2026-01-04 03:53:40 +01:00
9 lines
168 B
Docker
9 lines
168 B
Docker
FROM kibana:5
|
|
|
|
RUN apt-get update && apt-get install -y netcat bzip2
|
|
|
|
COPY entrypoint.sh /tmp/entrypoint.sh
|
|
RUN chmod +x /tmp/entrypoint.sh
|
|
|
|
CMD ["/tmp/entrypoint.sh"]
|