Skip to content
Snippets Groups Projects
Verified Commit bde11db3 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

danpos3: add non working Dockerfile

parent 0df86371
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:20.04
ENV DANPOS_VERSION="2f7f223"
ENV TZ=Europe/Paris
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \
&& apt update -qq \
&& apt install --no-install-recommends software-properties-common -y dirmngr git python \
&& wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc \
&& add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
RUN apt-get update \
&& apt-get install -y r-base=4.0.1 samtools \
&& git clone https://github.com/sklasfeld/DANPOS3.git \
&& cd DANPOS3 \
&& git checkout $DANPOS_VERSION \
&& pip install -r requirements.txt \
&& chmod +x DANPOS3/*.py
ENV PATH="/DANPOS3:${PATH}"
CMD [ "bash" ]
#!/bin/sh
docker pull lbmc/danpos3:2f7f223
docker build src/.docker_modules/danpos3/2f7f223 -t 'lbmc/danpos3:2f7f223'
docker push lbmc/danpos3:2f7f223
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment