lingzhi227 commited on
Commit
9baec3d
·
verified ·
1 Parent(s): cc21fd0

Upload tasks/clinical-metaproteomics/Dockerfile with huggingface_hub

Browse files
tasks/clinical-metaproteomics/Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM condaforge/mambaforge:latest
2
+
3
+ COPY environment.yml /tmp/environment.yml
4
+ RUN mamba env create -f /tmp/environment.yml -n task && mamba clean -afy
5
+
6
+ SHELL ["mamba", "run", "-n", "task", "/bin/bash", "-c"]
7
+
8
+ COPY run_script.sh /app/run_script.sh
9
+ RUN chmod +x /app/run_script.sh
10
+
11
+ WORKDIR /app
12
+ CMD ["mamba", "run", "-n", "task", "bash", "run_script.sh"]