From 6fe9c484a6f6d960d0e61364fa02656f90ef8c8b Mon Sep 17 00:00:00 2001 From: Sarita Singh Date: Wed, 8 Sep 2021 18:25:33 +0530 Subject: [PATCH] Add dockerfile Signed-off-by: Sarita Singh --- Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3637bca --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM ubuntu:latest + +ARG DEBIAN_FRONTEND=noninteractive +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + git \ + wget \ + cmake \ + g++ \ + sudo \ +&& rm -rf /var/lib/apt/lists/* + +ENV PATH="/root/miniconda3/bin:${PATH}" +ARG PATH="/root/miniconda3/bin:${PATH}" +RUN wget \ + https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \ + && mkdir /root/.conda \ + && bash Miniconda3-latest-Linux-x86_64.sh -b \ + && rm -f Miniconda3-latest-Linux-x86_64.sh + +RUN conda install -c conda-forge jupyter xeus xtl nlohmann_json cppzmq -y