File size: 293 Bytes
9f74d57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM condaforge/mambaforge:24.9.2-0

WORKDIR /app

COPY run_script.sh /app/
COPY environment.yml /app/

RUN mamba init bash && \
    . ~/.bashrc && \
    mamba env create -f environment.yml && \
    chmod +x /app/run_script.sh

SHELL ["/bin/bash", "--login", "-c"]

CMD ["/app/run_script.sh"]