- Update main.nf: Harbor container image, PVC mount paths, remove containerOptions and stageInMode - Update nextflow.config: Add k8s/k8s_gpu profiles, minimal config for WES injection - Update params.json: Correct paths for eureka PVC - Update Dockerfile.wes: CUDA base image for GPU support
22 lines
662 B
Docker
22 lines
662 B
Docker
FROM nvidia/cuda:12.2.0-runtime-ubuntu22.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
wget git python3 python3-pip build-essential curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /opt/bioemu
|
|
|
|
RUN python3 -m pip install --upgrade pip && \
|
|
pip install --no-cache-dir bioemu mdtraj scikit-learn pandas matplotlib seaborn
|
|
|
|
RUN mkdir -p /opt/bioemu/scripts/ /data /results && chmod -R 777 /data /results
|
|
|
|
COPY calculate_gibbs.py /opt/bioemu/scripts/
|
|
COPY scripts/calculate_binding.py /opt/bioemu/scripts/
|
|
|
|
RUN chmod +x /opt/bioemu/scripts/calculate_gibbs.py /opt/bioemu/scripts/calculate_binding.py
|
|
|
|
CMD ["/bin/bash"]
|