Fix Dockerfile to make it built with current Makefile.
authorYoshisato Yanagisawa <yyanagisawa@google.com>
Fri, 2 Jun 2017 05:54:55 +0000 (14:54 +0900)
committerYoshisato Yanagisawa <yyanagisawa@google.com>
Fri, 2 Jun 2017 05:54:55 +0000 (14:54 +0900)
Dockerfile

index 1094b2c937a046958d399c33742707b62917495d..bde64049fd0f3ff77277a0f6d2557f8330864637 100644 (file)
@@ -1,6 +1,7 @@
 FROM ubuntu
 
-RUN apt-get update && apt-get install gcc make git bison flex -y
+RUN apt-get -y update
+RUN apt-get -y install autoconf bison check flex gcc git libtool make pkg-config protobuf-c-compiler re2c
 RUN git clone https://github.com/google/nsjail.git
 RUN cd /nsjail && make
 RUN mv /nsjail/nsjail /bin && rm -rf -- /nsjail