Skip to content
Snippets Groups Projects
Commit 4cc1aad5 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

move env files into separate folder

parent 6bf2a68f
No related branches found
No related tags found
No related merge requests found
Pipeline #10952 passed with stage
in 20 minutes and 17 seconds
......@@ -16,11 +16,11 @@ RUN apt-get update && \
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
ADD ./envs/spyder_env.yml /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
ADD ./envs/cellxgene.txt /tmp/cellxgene.txt
RUN conda create -y --name cellxgene --file /tmp/cellxgene.txt
SHELL ["bash"]
......
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment