nsjail/Dockerfile

8 lines
201 B
Docker
Raw Normal View History

2017-04-21 21:35:50 +08:00
FROM ubuntu
RUN apt-get update && apt-get install gcc make git bison flex -y
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