lingzhi227 commited on
Commit
f4f95c0
·
verified ·
1 Parent(s): 0fa22ab

Upload tasks/gene-prediction/Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. tasks/gene-prediction/Dockerfile +7 -0
tasks/gene-prediction/Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM condaforge/mambaforge:24.9.2-0
2
+ WORKDIR /app
3
+ COPY run_script.sh /app/
4
+ COPY environment.yml /app/
5
+ RUN mamba init bash && . ~/.bashrc && mamba env create -f environment.yml && chmod +x /app/run_script.sh
6
+ SHELL ["/bin/bash", "--login", "-c"]
7
+ CMD ["/app/run_script.sh"]