nsjail/Dockerfile

9 lines
264 B
Docker
Raw Normal View History

2017-04-21 21:35:50 +08:00
FROM ubuntu
RUN apt-get -y update
RUN apt-get -y install autoconf bison check flex gcc git libtool make pkg-config protobuf-c-compiler re2c
2017-04-21 21:35:50 +08:00
RUN git clone https://github.com/google/nsjail.git
RUN cd /nsjail && make
2017-04-21 21:35:50 +08:00
RUN mv /nsjail/nsjail /bin && rm -rf -- /nsjail