From 8b449fa2e6e99a8013b3349c020a5bc59fdfad77 Mon Sep 17 00:00:00 2001 From: mdefende <mdefende@uab.edu> Date: Tue, 2 Jul 2024 13:43:05 -0500 Subject: [PATCH] add missing option --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2a4253..8a02ee4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN useradd -ms /bin/bash clarkad # Create the spyder environment to run out of. The container will start with this environment active, but you can switch to a different kernel inside spyder and have it run without issue ADD spyder_env.yml /tmp/spyder_env.yml -RUN conda env create -y /tmp/spyder_env.yml +RUN conda env create -y -f /tmp/spyder_env.yml # Create the cellxgene environment based on an environment file. ADD cellxgene.txt /tmp/cellxgene.txt -- GitLab