11# Dockerfile for tensorQTL
2- FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
2+ # https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/unsupported-tags.md
3+ FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04
34MAINTAINER Francois Aguet
45
56RUN apt-get update && apt-get install -y software-properties-common && \
@@ -27,15 +28,15 @@ RUN apt-get update && apt-get install -y software-properties-common && \
2728
2829# htslib
2930RUN cd /opt && \
30- wget --no-check-certificate https://github.com/samtools/htslib/releases/download/1.17 /htslib-1.17 .tar.bz2 && \
31- tar -xf htslib-1.17 .tar.bz2 && rm htslib-1.17 .tar.bz2 && cd htslib-1.17 && \
31+ wget --no-check-certificate https://github.com/samtools/htslib/releases/download/1.19 /htslib-1.19 .tar.bz2 && \
32+ tar -xf htslib-1.19 .tar.bz2 && rm htslib-1.19 .tar.bz2 && cd htslib-1.19 && \
3233 ./configure --enable-libcurl --enable-s3 --enable-plugins --enable-gcs && \
3334 make && make install && make clean
3435
3536# bcftools
3637RUN cd /opt && \
37- wget --no-check-certificate https://github.com/samtools/bcftools/releases/download/1.17 /bcftools-1.17 .tar.bz2 && \
38- tar -xf bcftools-1.17 .tar.bz2 && rm bcftools-1.17 .tar.bz2 && cd bcftools-1.17 && \
38+ wget --no-check-certificate https://github.com/samtools/bcftools/releases/download/1.19 /bcftools-1.19 .tar.bz2 && \
39+ tar -xf bcftools-1.19 .tar.bz2 && rm bcftools-1.19 .tar.bz2 && cd bcftools-1.19 && \
3940 ./configure --with-htslib=system && make && make install && make clean
4041
4142# install R
@@ -50,7 +51,7 @@ RUN Rscript -e 'if (!requireNamespace("BiocManager", quietly = TRUE)) {install.p
5051RUN pip3 install --upgrade pip setuptools
5152RUN pip3 install numpy pandas scipy
5253RUN pip3 install pandas-plink ipython jupyter matplotlib pyarrow torch rpy2 gcsfs Pgenlib>=0.90.1
53- RUN pip3 install tensorqtl==1.0.8
54+ RUN pip3 install tensorqtl==1.0.9
5455
5556# RUN cd /opt && \
5657# wget https://github.com/broadinstitute/tensorqtl/archive/v1.0.8.tar.gz && \
0 commit comments