lingzhi227 commited on
Commit
1b8ef9b
·
verified ·
1 Parent(s): e6b7d1a

Upload tasks/chipseq-peak-calling/Dockerfile with huggingface_hub

Browse files
tasks/chipseq-peak-calling/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"]