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

add sha tag for base image

parent 8b449fa2
No related branches found
No related tags found
No related merge requests found
Pipeline #10949 failed with stage
in 28 seconds
# Use the official Anaconda base image # Use the official Anaconda base image
FROM continuumio/anaconda3 FROM continuumio/anaconda3:bd2af590d39a5d1b590cd6ad2abab37ae386b7e2a9b9d91e110d3d82074f3af9
# Set environment variable to avoid user interaction during package installation # Set environment variable to avoid user interaction during package installation
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
...@@ -21,7 +21,7 @@ RUN conda env create -y -f /tmp/spyder_env.yml ...@@ -21,7 +21,7 @@ RUN conda env create -y -f /tmp/spyder_env.yml
# Create the cellxgene environment based on an environment file. # Create the cellxgene environment based on an environment file.
ADD cellxgene.txt /tmp/cellxgene.txt ADD cellxgene.txt /tmp/cellxgene.txt
RUN conda env create -y -n cellxgene -f /tmp/cellxgene.txt RUN conda create -y --name cellxgene --file /tmp/cellxgene.txt
SHELL ["bash"] SHELL ["bash"]
ENTRYPOINT [ "conda", "run", "--no-capture-output", "-n", "spyder-env", "spyder" ] ENTRYPOINT [ "conda", "run", "--no-capture-output", "-n", "spyder-env", "spyder" ]
\ No newline at end of file
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