-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
28 lines (27 loc) · 902 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FROM ubuntu:23.10
MAINTAINER Laurent Jourdren <jourdren@bio.ens.psl.eu>
ARG VERSION=2.5.3
RUN apt update && \
DEBIAN_FRONTEND=noninteractive apt install --yes \
python3 \
python3-pip\
git\
python3-tk\
python3-h5py\
python3-matplotlib\
python3-scipy\
python3-pandas\
python3-numpy\
python3-tqdm\
python3-pysam\
python3-sklearn\
python3-plotly && \
cd /tmp && \
git clone https://github.com/GenomicParisCentre/toulligQC && \
cd toulligQC && \
git checkout v$VERSION && \
python3 setup.py build install && \
apt remove --yes git && \
apt autoremove --yes && \
apt clean && \
rm -rf /var/lib/apt/lists/*