lingzhi227 commited on
Commit
cc2cedc
·
verified ·
1 Parent(s): 87d2b45

Upload tasks/haplotype-phasing/Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. tasks/haplotype-phasing/Dockerfile +7 -0
tasks/haplotype-phasing/Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
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", "haplotype-phasing", "/bin/bash", "-c"]
5
+ WORKDIR /workspace
6
+ COPY . /workspace/
7
+ CMD ["mamba", "run", "-n", "haplotype-phasing", "bash", "run_script.sh"]