FROM nvcr.io/nvidia/tensorflow:24.02-tf2-py3 | |
RUN apt-get update && apt-get install -y default-jre && rm -rf /var/lib/apt/lists/* | |
COPY requirements-py310.txt /tmp/ | |
RUN pip install --no-cache-dir -r /tmp/requirements-py310.txt | |
COPY . /app | |
WORKDIR /app | |
# RUN wget https://www.ncbi.nlm.nih.gov/CBBresearch/Lu/Demo/tmTools/download/GNorm2/GNorm2.tar.gz | |
# RUN tar -xvzf GNorm2.tar.gz | |
RUN chmod +x GNorm2.sh | |