Upload tasks/haplotype-phasing/Dockerfile with huggingface_hub
Browse files
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"]
|