From 12a2b34379e4b69feb0d2bcb451ee42d2b440098 Mon Sep 17 00:00:00 2001 From: Tru Huynh <tru@pasteur.fr> Date: Wed, 1 Mar 2023 15:03:23 +0100 Subject: [PATCH] finish singularity recipe -> Docker translation --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab18442..512832e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,11 +10,11 @@ RUN conda update conda && \ DEBIAN_FRONTEND=noninteractive apt-get -y clean autoclean # download the yml file -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 && \ -eval "$(conda shell.bash hook)" && \ -conda activate py310-pytorch && \ -conda list --explicit > /tmp/conda-list--explicit.yml +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 && \ + eval "$(conda shell.bash hook)" && \ + conda activate py310-pytorch && \ + conda list --explicit > /tmp/conda-list--explicit.yml -- GitLab