Skip to content

Commit f201d41

Browse files
committed
Upgraded conseq
1 parent a93fca1 commit f201d41

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

pipeline/build-pipeline-docker-images/pipeline-run-docker/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ RUN curl https://pyenv.run | bash
5555

5656
# Install Python 3.9 and 3.10 with shared library support
5757
ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
58-
RUN pyenv install 3.9 && pyenv install 3.10 && pyenv global 3.9
58+
RUN pyenv install 3.9 && pyenv install 3.10 && pyenv install 3.13 && pyenv global 3.9
5959

6060
# Create symlinks for python3.9 and python3.10 so they can be called directly
6161
RUN ln -s $(pyenv prefix 3.9)/bin/python /usr/local/bin/python3.9 && \
62-
ln -s $(pyenv prefix 3.10)/bin/python /usr/local/bin/python3.10
62+
ln -s $(pyenv prefix 3.10)/bin/python /usr/local/bin/python3.10 && \
63+
ln -s $(pyenv prefix 3.13)/bin/python /usr/local/bin/python3.13
6364

6465
RUN mkdir -p /root/.taiga && mkdir -p /root/.local/bin
6566

@@ -85,12 +86,12 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.c
8586

8687
# install conseq in virtual environment
8788
COPY conseq-settings /root/.conseq
88-
RUN python3.9 -m venv /install/conseq && \
89-
/install/conseq/bin/pip install https://github.com/broadinstitute/conseq/releases/download/v2.0.3/conseq-2.0.3.tar.gz && \
89+
RUN python3.13 -m venv /install/conseq && \
90+
/install/conseq/bin/pip install https://github.com/broadinstitute/conseq/archive/refs/tags/v2.2.0.tar.gz && \
9091
ln -s /install/conseq/bin/conseq /root/.local/bin
9192

9293
# copy the conseq helper into known location
93-
RUN cp /install/conseq/lib/python3.9/site-packages/conseq/helper.py /helper.py
94+
RUN cp /install/conseq/lib/python3.13/site-packages/conseq/helper.py /helper.py
9495

9596
# install Poetry
9697
RUN python3.9 -m venv /install/poetry && \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This is also used in pipeline/jenkins-run-pipeline.sh.
22

3-
DOCKER_IMAGE=us-central1-docker.pkg.dev/depmap-consortium/depmap-docker-images/depmap-pipeline-run:v9
3+
DOCKER_IMAGE=us-central1-docker.pkg.dev/depmap-consortium/depmap-docker-images/depmap-pipeline-run:v10

0 commit comments

Comments
 (0)