diff --git a/install/Dockerfile b/install/Dockerfile index 386b5c15..c9f6c4fe 100644 --- a/install/Dockerfile +++ b/install/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:22.04 ENV APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn ENV DEBIAN_FRONTEND=noninteractive USER root @@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -yq --no-install-recommends \ git wget \ ca-certificates \ sudo python3 python3-pip +# faSomeRecords and faSize are needed for the UShER WDL workflow WORKDIR /HOME/kentsource RUN wget http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/faSomeRecords RUN wget http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/faSize @@ -16,6 +17,5 @@ WORKDIR usher ## Checkout latest release #RUN git checkout $(git describe --tags `git rev-list --tags --max-count=1`) RUN ./install/installUbuntu.sh -# faSomeRecords and faSize are needed for the UShER WDL workflow ## set the path ENV PATH="/HOME/usher/build:/HOME/kentsource:${PATH}"