Created
May 24, 2017 19:47
-
-
Save dotnwat/e6809da853fc491e4d6c8e1172b98a9a to your computer and use it in GitHub Desktop.
ZLog KVStore Dockerfile
This file contains hidden or 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:xenial | |
RUN apt-get update && apt-get install -y git | |
RUN git clone https://github.com/noahdesu/zlog.git /src | |
RUN cd /src && ./install-deps.sh | |
RUN cd /src && \ | |
git submodule update --init --recursive && \ | |
cmake . && \ | |
make -j4 && \ | |
make install | |
WORKDIR /src/ | |
RUN mkdir db | |
CMD [ "src/kvstore/bench" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment