-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
26 lines (23 loc) · 934 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
##### BASE IMAGE #####
FROM python:3.8-slim
##### METADATA #####
LABEL base.image="python:3.8-slim"
LABEL software="zpca"
LABEL software.description="PCA analysis"
LABEL software.website="https://github.com/zavolanlab/zpca"
LABEL software.documentation="https://github.com/zavolanlab/zpca"
LABEL software.license="https://github.com/zavolanlab/zpca/blob/master/LICENSE"
LABEL software.tags="Genomics,Transcriptomics"
LABEL maintainer="[email protected]"
LABEL maintainer.organisation="Biozentrum, University of Basel"
LABEL maintainer.location="Klingelbergstrasse 50/70, CH-4056 Basel, Switzerland"
LABEL maintainer.lab="Zavolan Lab"
LABEL maintainer.license="Apache License 2.0"
COPY scripts scripts
COPY zpca zpca
COPY requirements.txt .
COPY setup.py .
##### INSTALL #####
RUN apt-get update \
&& apt-get install -y apt-utils gcc make zlib1g-dev libbz2-dev liblzma-dev libcurl4-openssl-dev \
&& python setup.py install