forked from bigbio/py-pgatk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
22 lines (18 loc) · 834 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM biocontainers/biocontainers:debian-stretch-backports
MAINTAINER Yasset Perez-Riverol <[email protected]>
LABEL software="pypgatk" \
container="pypgatk" \
software.version="0.0.20" \
version="1"
RUN apt-get update && apt-get install -y python3 && apt-get install -y python3-pip && apt-get install -y git
RUN apt-get clean && apt-get purge && rm -rf /var/lib/apt/lists/* /tmp/*
RUN apt-get update && apt-get install -y procps
WORKDIR /data
RUN mkdir -p /tool/source && cd /tool/source
RUN git config --global http.sslVerify false
RUN git clone --depth 1 https://github.com/bigbio/py-pgatk.git /tool/source
RUN cd /tool/source/ && pip3 install -r requirements.txt && python3 setup.py install
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
ENV PATH=$PATH:/tool/source/pypgatk/
RUN chmod +x /tool/source/pypgatk/pypgatk_cli.py