lingzhi227 commited on
Commit
e880dcb
·
verified ·
1 Parent(s): d66295b

Upload tasks/crispr-screen/Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. tasks/crispr-screen/Dockerfile +11 -0
tasks/crispr-screen/Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM condaforge/mambaforge:latest
2
+
3
+ COPY environment.yml /tmp/environment.yml
4
+ RUN mamba env create -f /tmp/environment.yml && mamba clean -afy
5
+
6
+ ENV PATH /opt/conda/envs/crispr-screen/bin:$PATH
7
+ SHELL ["mamba", "run", "-n", "crispr-screen", "/bin/bash", "-c"]
8
+
9
+ WORKDIR /workspace
10
+ COPY run_script.sh /workspace/
11
+ RUN chmod +x /workspace/run_script.sh