Skip to content

Commit

Permalink
Merge branch 'hotfix/5.7.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
FMakosza committed Nov 28, 2024
2 parents d9d382a + 9c691f5 commit 0d9f646
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES

## 5.7.4

* Fix Dockerfile

## 5.7.3

* Exit with a clearer error message when file does not pass the minimum read threshold
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RUN bash build/opt-build.sh $OPT
COPY . .
RUN bash build/opt-build-local.sh $OPT

FROM ubuntu:20.04
FROM ubuntu:24.04

LABEL maintainer="cgphelp@sanger.ac.uk"\
uk.ac.sanger.cgp="Cancer, Ageing and Somatic Mutation, Wellcome Sanger Institute" \
Expand All @@ -75,9 +75,11 @@ psmisc \
time \
zlib1g \
liblzma5 \
libncurses5 \
libncurses6 \
exonerate \
openssl \
adduser \
libdeflate0 \
unattended-upgrades && \
unattended-upgrade -d -v && \
apt-get remove -yq unattended-upgrades && \
Expand All @@ -89,7 +91,7 @@ RUN mkdir -p $OPT
COPY --from=builder $OPT $OPT

## USER CONFIGURATION
RUN adduser --disabled-password --gecos '' ubuntu && chsh -s /bin/bash && mkdir -p /home/ubuntu
RUN chsh -s /bin/bash && mkdir -p /home/ubuntu

USER ubuntu
WORKDIR /home/ubuntu
Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Vaf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Sanger::CGP::Vaf;
use strict;
use Const::Fast qw(const);

our $VERSION = '5.7.3';
our $VERSION = '5.7.4';

const my $LICENSE =>
"#################
Expand Down

0 comments on commit 0d9f646

Please sign in to comment.