lingzhi227 commited on
Commit
121d8bf
·
verified ·
1 Parent(s): db243fb

Upload tasks/dia-proteomics/Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. tasks/dia-proteomics/Dockerfile +2 -7
tasks/dia-proteomics/Dockerfile CHANGED
@@ -1,12 +1,7 @@
1
  FROM condaforge/mambaforge:latest
2
-
3
  COPY environment.yml /tmp/environment.yml
4
  RUN mamba env create -f /tmp/environment.yml && mamba clean -afy
5
-
6
- ENV PATH /opt/conda/envs/dia-proteomics/bin:$PATH
7
- SHELL ["conda", "run", "-n", "dia-proteomics", "/bin/bash", "-c"]
8
-
9
  WORKDIR /workspace
10
  COPY . /workspace/
11
-
12
- CMD ["bash", "run_script.sh"]
 
1
  FROM condaforge/mambaforge:latest
 
2
  COPY environment.yml /tmp/environment.yml
3
  RUN mamba env create -f /tmp/environment.yml && mamba clean -afy
4
+ SHELL ["mamba", "run", "-n", "dia-proteomics", "/bin/bash", "-c"]
 
 
 
5
  WORKDIR /workspace
6
  COPY . /workspace/
7
+ CMD ["mamba", "run", "-n", "dia-proteomics", "bash", "run_script.sh"]