Skip to content

Commit

Permalink
Update TRTools to v6.0.2 (#171)
Browse files Browse the repository at this point in the history
* Update TRTools to v6

* try changing micromamba download link

* trying to fix version

* hard code 6.0.2

* unhard code

* try ver

* lint check

* EOF

* revert to version

* revert to VERSION
  • Loading branch information
hopedisastro authored Oct 31, 2024
1 parent 1bbe8e9 commit d8aa769
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion images.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ star = '2.7.10b'
strvctvre = 'v.1.10'
subread = '2.0.6'
talos = '6.1.0' # release to build, image names should have specific releases. Can build by naming side-branch
trtools = '5.0.2'
trtools = '6.0.2'
trtools_hope_version = 'skip-if-monomorphic' # specific branch name
vep_105 = '105.0'
vep_110 = 'release_110.1'
Expand Down
9 changes: 5 additions & 4 deletions images/trtools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ FROM debian:buster-slim

ENV MAMBA_ROOT_PREFIX /root/micromamba
ENV PATH $MAMBA_ROOT_PREFIX/bin:$PATH
ARG VERSION=${VERSION:-5.0.2}
ARG VERSION=${VERSION:-6.0.2}

RUN apt-get update && apt-get install -y git wget bash bzip2 zip && \
# Install necessary packages
RUN apt-get update && apt-get install -y git curl bash bzip2 zip && \
rm -r /var/lib/apt/lists/* && \
rm -r /var/cache/apt/* && \
wget -qO- https://api.anaconda.org/download/conda-forge/micromamba/0.8.2/linux-64/micromamba-0.8.2-he9b6cbd_0.tar.bz2 | tar -xvj -C /usr/local bin/micromamba && \
rm -r /var/cache/apt/*
RUN curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba && \
mkdir ${MAMBA_ROOT_PREFIX} && \
micromamba install -y --prefix ${MAMBA_ROOT_PREFIX} -c bioconda -c conda-forge \
trtools=${VERSION} && \
Expand Down

0 comments on commit d8aa769

Please sign in to comment.