From fd68b5bdb184efc31be764e8812ac9d7d231558b Mon Sep 17 00:00:00 2001
From: Tru Huynh <tru@pasteur.fr>
Date: Wed, 1 Mar 2023 15:20:36 +0100
Subject: [PATCH] missing env name

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 512832e..e8a2a89 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,7 +11,7 @@ RUN	conda update conda && \
 
 # download the yml file
 RUN curl https://gitlab.pasteur.fr/tru/miniconda3-python310-pytorch-cuda11.7/-/raw/main/conda-env-export.yml > conda-env-export.yml && \
-	conda env create --file conda-env-export.yml && \
+	conda env create --name py310-pytorch --file conda-env-export.yml && \
 	eval "$(conda shell.bash hook)"  && \
 	conda activate py310-pytorch  && \
 	conda list --explicit > /tmp/conda-list--explicit.yml
-- 
GitLab