Skip to content

Instantly share code, notes, and snippets.

@domix
Created November 5, 2014 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save domix/370fafc04fa8be29f5db to your computer and use it in GitHub Desktop.
Save domix/370fafc04fa8be29f5db to your computer and use it in GitHub Desktop.
Dynomite Dockerfile
FROM ubuntu
MAINTAINER Domingo Suarez "domingo.suarez@gmail.com"
RUN apt-get update
RUN apt-get -y install wget zip gcc dh-autoreconf ssh
RUN wget --no-check-certificate https://github.com/Netflix/dynomite/archive/v0.3.0.zip
RUN unzip v0.3.0.zip
RUN cd dynomite-0.3.0 && autoreconf -fvi && ./configure && make
RUN dynomite-0.3.0/src/dynomite -h
RUN dynomite-0.3.0/src/dynomite -V
RUN dynomite-0.3.0/src/dynomite -h
EXPOSE 8101
ENTRYPOINT ["dynomite-0.3.0/src/dynomite", "-c", "dynomite-0.3.0/conf/dynomite.yml", "-v", "11"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment