lingzhi227's picture
Upload tasks/multisample-variants/Dockerfile with huggingface_hub
6abb35f verified
raw
history blame contribute delete
270 Bytes
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"]