Skip to content

Instantly share code, notes, and snippets.

@dotnwat
Created May 24, 2017 19:47
Show Gist options
  • Save dotnwat/e6809da853fc491e4d6c8e1172b98a9a to your computer and use it in GitHub Desktop.
Save dotnwat/e6809da853fc491e4d6c8e1172b98a9a to your computer and use it in GitHub Desktop.
ZLog KVStore Dockerfile
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