Upload tasks/pangenome-evolution/Dockerfile with huggingface_hub
Browse files
tasks/pangenome-evolution/Dockerfile
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM condaforge/mambaforge:24.9.2-0
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
COPY run_script.sh /app/
|
| 6 |
+
COPY environment.yml /app/
|
| 7 |
+
|
| 8 |
+
RUN mamba init bash && \
|
| 9 |
+
. ~/.bashrc && \
|
| 10 |
+
mamba env create -f environment.yml && \
|
| 11 |
+
chmod +x /app/run_script.sh
|
| 12 |
+
|
| 13 |
+
SHELL ["/bin/bash", "--login", "-c"]
|
| 14 |
+
|
| 15 |
+
CMD ["/app/run_script.sh"]
|