commit b007bfcdf0134520c53697793039a32ebd3fff91 Author: Marcel <MTRNord@users.noreply.github.com> Date: Sun, 10 Jul 2016 18:11:48 +0200 Create Dockerfile Diffstat:
| A | Dockerfile | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/Dockerfile b/Dockerfile @@ -0,0 +1,9 @@ +FROM library/debian:jessie +RUN apt-get install -y git \ + make \ + build-essential \ + mysql \ + autoconf + +RUN git clone https://github.com/akopytov/sysbench.git && cd sysbench && ./autogen.sh && ./configure && make && make install +CMD ["/bin/bash", "sysbench --debug > /root/shared/results/benchmark.txt"]