lingzhi227 commited on
Commit
6bb0fcb
·
verified ·
1 Parent(s): 67d6f8d

Upload tasks/hic-3d-conformation/Dockerfile with huggingface_hub

Browse files
tasks/hic-3d-conformation/Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
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/hic-3d-conformation/bin:$PATH"
7
+
8
+ WORKDIR /workspace
9
+ COPY run_script.sh /workspace/
10
+ RUN chmod +x /workspace/run_script.sh