Skip to content

Instantly share code, notes, and snippets.

@domix
Created November 5, 2014 02:04
Show Gist options
  • Select an option

  • Save domix/370fafc04fa8be29f5db to your computer and use it in GitHub Desktop.

Select an option

Save domix/370fafc04fa8be29f5db to your computer and use it in GitHub Desktop.
Dynomite Dockerfile
FROM ubuntu
MAINTAINER Domingo Suarez "[email protected]"
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