Created
July 28, 2014 09:16
-
-
Save anonymous/a7c5cabad1e3463e9f82 to your computer and use it in GitHub Desktop.
Riak install docker file
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 ubuntu:12.04 | |
#ADD https://gist.githubusercontent.com/samof76/4d15d92910b6cec8efae/raw/bcba158b46e82b9625d1883c6bd9567a96b6ac86/sources.list /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get install -y curl lsb-release | |
RUN curl http://apt.basho.com/gpg/basho.apt.key | apt-key add - | |
RUN bash -c "echo deb http://apt.basho.com $(lsb_release -sc) main > /etc/apt/sources.list.d/basho.list" | |
RUN apt-get update | |
RUN apt-get install -y riak |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment