nsjail/Dockerfile
Wiktor Garbacz dc428155e8 Simplify cloning/building.
Kafel submodule will be automatically initialized if not done manually
before invoking `make`.
2017-05-15 19:39:20 +02:00

8 lines
201 B
Docker

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
RUN mv /nsjail/nsjail /bin && rm -rf -- /nsjail