From 6fe9c484a6f6d960d0e61364fa02656f90ef8c8b Mon Sep 17 00:00:00 2001 From: Sarita Singh Date: Wed, 8 Sep 2021 18:25:33 +0530 Subject: [PATCH 1/2] 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 From 9c92987433bd8a9ee56eef31975ed8612f77dbf6 Mon Sep 17 00:00:00 2001 From: Sarita Singh Date: Wed, 8 Sep 2021 18:26:00 +0530 Subject: [PATCH 2/2] Integrate gitpod to this project Signed-off-by: Sarita Singh --- .gitpod.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..e73f110 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +image: + file: Dockerfile +ports: + - port: 8888 + visibility: public + onOpen: notify +workspaceLocation: xbasic +checkoutLocation: xbasic +tasks: + - init: conda activate base