Skip to content

Instantly share code, notes, and snippets.

@bladedoyle
Last active March 30, 2016 16:59
Show Gist options
  • Save bladedoyle/8713b09502312635641a31a2fa8da4f0 to your computer and use it in GitHub Desktop.
Save bladedoyle/8713b09502312635641a31a2fa8da4f0 to your computer and use it in GitHub Desktop.
Dockerfile for Kibana 4.4.2 on ARM
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