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

fix spyder env name and conda run command

parent f39f55e1
No related branches found
No related tags found
No related merge requests found
Pipeline #10978 passed with stage
in 21 minutes and 41 seconds
...@@ -8,7 +8,6 @@ ENV DEBIAN_FRONTEND=noninteractive ...@@ -8,7 +8,6 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
libgl1-mesa-glx \ libgl1-mesa-glx \
libxtst6 \
less \ less \
nano \ nano \
&& apt-get clean && \ && apt-get clean && \
...@@ -25,4 +24,4 @@ ADD ./envs/cellxgene.txt /tmp/cellxgene.txt ...@@ -25,4 +24,4 @@ ADD ./envs/cellxgene.txt /tmp/cellxgene.txt
RUN conda create -y --name cellxgene --file /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", "-p", "/opt/conda/envs", "spyder" ]
\ No newline at end of file \ No newline at end of file
name: spyder name: spyder-env
channels: channels:
- conda-forge - conda-forge
- defaults - defaults
......
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