-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
27 lines (18 loc) · 1.15 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM amazon/opendistro-for-elasticsearch-kibana:1.12.0
WORKDIR /usr/share/kibana
ENV PATH=/usr/share/kibana/bin:$PATH
# Install Bitergia Analytics plugins
RUN kibana-plugin install "https://github.com/Bitergia/bitergia-analytics-plugin/releases/download/0.0.2_7.10.0/bitergiaAnalytics-7.10.0.zip"
# Install visualization plugins
RUN kibana-plugin install "https://github.com/dlumbrer/kbn_radar/releases/download/7.10.0-1/kbn_radar-7.10.0.zip"
RUN kibana-plugin install "https://github.com/dlumbrer/kbn_network/releases/download/7.10.0-1/kbn_network-7.10.0.zip"
RUN kibana-plugin install "https://github.com/dlumbrer/kbn_dotplot/releases/download/7.10.0-1/kbn_dotplot-7.10.0.zip"
RUN kibana-plugin install "https://github.com/dlumbrer/kbn_polar/releases/download/7.10.0-1/kbn_polar-7.10.0.zip"
RUN kibana-plugin install "https://github.com/fbaligand/kibana-enhanced-table/releases/download/v1.10.1/enhanced-table-1.10.1_7.10.0.zip"
COPY ./hack/template.js src/core/server/rendering/views/.
COPY ./favicons/* src/core/server/core_app/assets/favicons/
USER root
COPY ./docker-entrypoint.sh /
RUN chmod +x /docker-entrypoint.sh
USER 1000
ENTRYPOINT ["/docker-entrypoint.sh"]