Last active
March 30, 2016 16:59
-
-
Save bladedoyle/8713b09502312635641a31a2fa8da4f0 to your computer and use it in GitHub Desktop.
Dockerfile for Kibana 4.4.2 on ARM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM armv7/armhf-debian | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9165938D90FDDD2E && \ | |
apt-get -y update && \ | |
apt-get -y upgrade && \ | |
apt-get -y --force-yes install sudo npm wget gzip unzip git | |
RUN wget http://node-arm.herokuapp.com/node_latest_armhf.deb && \ | |
dpkg -i node_latest_armhf.deb && \ | |
rm node_latest_armhf.deb | |
RUN wget --quiet https://github.com/elastic/kibana/archive/v4.4.2.zip && \ | |
unzip v4.4.2.zip && \ | |
rm v4.4.2.zip | |
WORKDIR /kibana-4.4.2 | |
RUN npm install && \ | |
npm install gridster | |
ENV PATH /kibana-4.4.2/bin:$PATH | |
CMD ["/kibana-4.4.2/bin/kibana"] | |
EXPOSE 5601/tcp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment