Sign inSign up

ttubb/pilon

By ttubb

Updated over 6 years ago

Built to run https://github.com/broadinstitute/pilon

Image
0

1.1K

Dockerfile
FROM ubuntu:18.04

ARG PILON_VERSION=1.23

WORKDIR /software

RUN apt-get update \
 && apt-get install -y default-jre \
                       wget

RUN wget https://github.com/broadinstitute/pilon/releases/download/v${PILON_VERSION}/pilon-${PILON_VERSION}.jar
RUN mv pilon-${PILON_VERSION}.jar pilon.jar
RUN chmod 744 pilon.jar

RUN apt-get clean