lingzhi227 commited on
Commit
2a5cdce
·
verified ·
1 Parent(s): 30eb907

Upload tasks/cutandrun/Dockerfile with huggingface_hub

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