-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
27 lines (22 loc) · 1.06 KB
/
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
################## BASE IMAGE ######################
FROM biocontainers/biocontainers:latest
################## METADATA ######################
LABEL base.image="biocontainers:latest"
LABEL version="1"
LABEL software="ProteoWizard"
LABEL software.version="3_0_9740"
LABEL about.summary="tools and software libraries that facilitate proteomics data analysis"
LABEL about.home="http://proteowizard.sourceforge.net/"
LABEL about.documentation="http://proteowizard.sourceforge.net/"
LABEL license="http://proteowizard.sourceforge.net/"
LABEL about.tags="Proteomics"
################## MAINTAINER ######################
MAINTAINER Felipe da Veiga Leprevost <[email protected]>
USER biodocker
RUN ZIP=pwiz-bin-linux-x86_64-gcc48-release-3_0_9740.zip && \
wget https://github.com/BioDocker/software-archive/releases/download/proteowizard/$ZIP -O /tmp/$ZIP && \
unzip /tmp/$ZIP -d /home/biodocker/bin/pwiz/ && \
chmod -R 755 /home/biodocker/bin/pwiz/* && \
rm /tmp/$ZIP
ENV PATH /home/biodocker/bin/pwiz/pwiz-bin-linux-x86_64-gcc48-release-3_0_9740:$PATH
WORKDIR /data/