Skip to content
This repository was archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
add Dockerfile based on debian:9
Browse files Browse the repository at this point in the history
  • Loading branch information
emalloy committed Apr 10, 2019
1 parent c6120fc commit b1eec92
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM debian:9
ADD . /usr/local/twemperf
RUN apt-get update && apt-get install -y \
gcc \
make \
autoconf \
g++ \
q
RUN cd /usr/local/twemperf \
&& autoreconf -fvi \
&& CFLAGS=-"-ggdb3 -O0"./configure \
&& make \
&& make install

0 comments on commit b1eec92

Please sign in to comment.