lingzhi227 commited on
Commit
0cbdcb9
·
verified ·
1 Parent(s): a25624b

Upload tasks/mapping-qc/Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. tasks/mapping-qc/Dockerfile +7 -0
tasks/mapping-qc/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"]