From b637835984cb62208f19a80b56bdc7caa36434a3 Mon Sep 17 00:00:00 2001 From: Cody Burns Date: Thu, 17 May 2018 12:33:54 -0500 Subject: [PATCH] add nano add nano and recursive git update --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e12d5f18..e555c3a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ WORKDIR /root RUN apt-get update && \ apt-get install -y \ - wget unzip curl \ + wget unzip curl nano\ build-essential cmake git libgmp3-dev libprocps4-dev python-markdown libboost-all-dev libssl-dev pkg-config RUN git clone https://github.com/scipr-lab/libsnark/ \ && cd libsnark \ - && git submodule init && git submodule update \ + && git submodule update --init --recursive\ && mkdir build && cd build && cmake .. \ && make \ && DESTDIR=/usr/local make install \