From 7eab8ee0ac0c6172dec8e97fb72b32f38337ce62 Mon Sep 17 00:00:00 2001 From: Pierre Guillod Date: Mon, 24 Apr 2023 22:57:21 +0200 Subject: [PATCH] add Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7f921f6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM continuumio/miniconda3 +WORKDIR /root/home/ +ADD ./semicustom /root/home/semicustom +ADD ./fullcustom /root/home/fullcustom +RUN apt update && apt install -y libgl1-mesa-glx +RUN cd semicustom && conda env create +RUN cd fullcustom && conda env create