diff --git a/containers/phylowgs/v1.5.1-msk/Dockerfile b/containers/phylowgs/v1.5.1-msk/Dockerfile index b5d099c..8fa21a6 100644 --- a/containers/phylowgs/v1.5.1-msk/Dockerfile +++ b/containers/phylowgs/v1.5.1-msk/Dockerfile @@ -6,14 +6,15 @@ LABEL org.opencontainers.image.vendor="MSKCC-OMICS-WORKFLOWS" \ org.opencontainers.image.created="2025-08-21T11:07:00Z" \ imageprivacy="False" \ org.opencontainers.image.licenses="GPL-3.0" \ - org.opencontainers.image.version="1.5.1-msk" \ + org.opencontainers.image.version="1.5.2-msk" \ org.opencontainers.image.source="https://github.com/mskcc/phylowgs" \ org.opencontainers.image.url="https://github.com/mskcc-omics-workflows/containers/containers/phylowgs/" \ org.opencontainers.image.title="Phylowgs" \ org.opencontainers.image.description="Application for inferring subclonal composition and evolution from whole-genome sequencing data." ENV DEBIAN_FRONTEND=noninteractive -ENV PHYLOWGS_TAG="v1.5.1-msk" +ENV PHYLOWGS_TAG="v1.5.2-msk" +ENV PHYLOWGS_MSK_RELEASE="1.5.2" ARG TARGETPLATFORM RUN apt-get update -y \ @@ -23,7 +24,7 @@ RUN apt-get update -y \ && curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip.py \ && python2 /tmp/get-pip.py \ # Install phylowgs - && git clone --branch 1.5.1 https://github.com/mskcc/phylowgs /tmp/phylowgs \ + && git clone --branch ${PHYLOWGS_MSK_RELEASE} https://github.com/mskcc/phylowgs /tmp/phylowgs \ && pip2 install --no-cache-dir -r /tmp/phylowgs/requirements.txt \ && cp -r /tmp/phylowgs/ /usr/bin \ && g++ -I/usr/bin/phylowgs -o /usr/bin/phylowgs/mh.o -O3 /usr/bin/phylowgs/mh.cpp /usr/bin/phylowgs/util.cpp -I/usr/include -L/usr/lib/aarch64-linux-gnu -lgsl -lgslcblas -lm \