File tree 1 file changed +48
-0
lines changed
1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright (c) Bioinformatics Core Facility of the Max Planck Institute for Biology of Ageing.
2
+ # Distributed under the terms of the Modified BSD License.
3
+
4
+ FROM mpgagebioinformatics/bioinformatics_software:v4.0.1
5
+ LABEL maintainer
"[email protected] "
6
+ USER root
7
+
8
+ # ########################################
9
+ # ### Bioinformatics tools start here ####
10
+ # ########################################
11
+
12
+ RUN apt-get update && \
13
+ apt-get install -yq \
14
+ libssl-dev \
15
+ libcurl4-openssl-dev \
16
+ libgeos-c1v5 \
17
+ libgeos-dev \
18
+ libudunits2-dev \
19
+ libudunits2-0 \
20
+ libpng16-16 \
21
+ libpng-dev \
22
+ acl \
23
+ libxml-libxml-perl \
24
+ libjpeg-dev && \
25
+ apt-get clean && rm -rf /var/lib/apt/lists/*
26
+
27
+
28
+ # ## Adding STAR module
29
+
30
+ # star
31
+ RUN cd $SOUR && \
32
+ wget https://github.com/alexdobin/STAR/archive/refs/tags/2.7.10b.tar.gz && \
33
+ tar -xzf 2.7.10b.tar.gz && \
34
+ cd STAR-2.7.10b && \
35
+ mkdir -p $SOFT/star/2.7.10b/bin && \
36
+ cp -r bin/Linux_x86_64_static/* $SOFT/star/2.7.10b/bin && \
37
+ newmod.sh \
38
+ -s star \
39
+ -p $MODF/bioinformatics/ \
40
+ -v 2.7.10b && \
41
+ rm -rf ${SOUR}/*
42
+
43
+ # #########################
44
+ # ### this part to end ####
45
+ # #########################
46
+ RUN mkdir -p /Dockerfiles/v4.0.2
47
+ COPY Dockerfile /Dockerfiles/v4.0.2
48
+ USER $NB_USER
You can’t perform that action at this time.
0 commit comments