Skip to content

Instantly share code, notes, and snippets.

@pierrecarre
Forked from dahernan/gist:6149626
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save pierrecarre/bd37de36815738a7d3a7 to your computer and use it in GitHub Desktop.

Select an option

Save pierrecarre/bd37de36815738a7d3a7 to your computer and use it in GitHub Desktop.
FROM ubuntu
MAINTAINER dahernan "dahernan@gmail.com"
# Java 7
RUN echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" | tee -a /etc/apt/sources.list
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
RUN apt-get update
RUN echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
RUN apt-get install oracle-java7-installer -y
# elasticsearch
RUN apt-get install wget -y
RUN wget --no-check-certificate https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.2.tar.gz
RUN tar -xf elasticsearch-0.90.2.tar.gz
RUN rm elasticsearch-0.90.2.tar.gz
EXPOSE :9200
CMD elasticsearch-0.90.2/bin/elasticsearch -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment