# 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
ADD cxg_env.yml /tmp/cxg_env.yml
RUN conda env create -y-f /tmp/cxg_env.yml
# Create the cellxgene environment based on an environment file.
ADD cellxgene.txt /tmp/cellxgene.txt
RUN conda env create -y-n cellxgene -f /tmp/cellxgene.txt