Skip to content

Commit

Permalink
fix: change versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
dnousome committed Oct 25, 2023
1 parent 5899742 commit 2d9a745
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
18 changes: 6 additions & 12 deletions docker/logan_base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nciccbr/ccbr_ubuntu_base_20.04:v5
FROM --platform=linux/amd64 nciccbr/ccbr_ubuntu_base_20.04:v5

# build time variables
ARG BUILD_DATE="000000"
Expand Down Expand Up @@ -103,6 +103,7 @@ RUN wget https://github.com/BoevaLab/FREEC/archive/refs/tags/v11.6.zip \
ENV PATH="/opt2/FREEC-11.6/src:$PATH"
WORKDIR /opt2


# Install Somalier/v0.2.16
# download static binary
RUN mkdir somalier \
Expand Down Expand Up @@ -134,14 +135,10 @@ ENV SNPEFF_JAR="/opt2/snpEff/snpEff.jar"
RUN git clone https://github.com/GregoryFaust/samblaster.git \
&& cd /opt2/samblaster \
&& make \
&& chmod a+rx /opt2/samblaster/samblaster
&& chmod a+rX /opt2/samblaster/samblaster
ENV PATH="/opt2/samblaster:$PATH"
WORKDIR /opt2

#Install Mosdeph
RUN wget https://github.com/brentp/mosdepth/releases/download/v0.3.5/mosdepth \
&& chmod a+x mosdepth

# Install strelka/2.9.10, requires python2.7 (already satisfied)
# and set python2.7 as the default interpreter
RUN wget https://github.com/Illumina/strelka/releases/download/v2.9.10/strelka-2.9.10.centos6_x86_64.tar.bz2 \
Expand Down Expand Up @@ -185,19 +182,16 @@ RUN wget https://github.com/hartwigmedical/hmftools/releases/download/amber-v3.9
&& mv amber-3.9.jar hmftools/amber.jar \
&& mv cobalt_v1.15.1.jar hmftools/cobalt.jar \
&& mv purple_v3.9.jar hmftools/purple.jar \
&& chmod a+x hmftools/amber.jar \
&& chmod a+x hmftools/cobalt.jar \
&& chmod a+x hmftools/purple.jar

&& chmod a+x hmftools/amber.jar
ENV PATH="/opt2/hmftools:$PATH"

# SvABA
RUN wget -O svaba_1.2.0 https://github.com/walaj/svaba/releases/download/v1.2.0/svaba \
&& mkdir svaba \
&& mv svaba_1.2.0 svaba/svaba \
&& chmod a+rx /opt2/svaba/svaba
&& mv svaba_1.2.0 svaba/svaba
ENV PATH="/opt2/svaba:$PATH"


# Add Dockerfile and argparse.bash script
# and export environment variables
ADD Dockerfile /opt2/base_gatk4_wgs.dockerfile
Expand Down
2 changes: 1 addition & 1 deletion docker/logan_base/meta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dockerhub_namespace: dnousome
image_name: ccbr_logan_base
version: 0.3.1
version: v0.3.1
container: "$(dockerhub_namespace)/$(image_name):$(version)"

0 comments on commit 2d9a745

Please sign in to comment.