Skip to content

Commit

Permalink
Merge pull request #5 from lovrenca/master
Browse files Browse the repository at this point in the history
Added python driver for rethinkdb.
  • Loading branch information
pilwon committed Jan 25, 2015
2 parents a3d670b + e9da66d commit 0ef66f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Expand Up @@ -12,9 +12,12 @@ RUN \
echo "deb http://download.rethinkdb.com/apt `lsb_release -cs` main" > /etc/apt/sources.list.d/rethinkdb.list && \
wget -O- http://download.rethinkdb.com/apt/pubkey.gpg | apt-key add - && \
apt-get update && \
apt-get install -y rethinkdb && \
apt-get install -y rethinkdb python-pip && \
rm -rf /var/lib/apt/lists/*

# Install python driver for rethinkdb
RUN pip install rethinkdb

# Define mountable directories.
VOLUME ["/data"]

Expand Down

0 comments on commit 0ef66f9

Please sign in to comment.