File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ # ################# BASE IMAGE ######################
2+
3+ FROM python:3.10.8
4+
5+ # ################# METADATA ######################
6+
7+ LABEL base_image="python:3.10.8"
8+ LABEL version="1"
9+ LABEL software="i2nca"
10+ LABEL software.version="0.3.12"
11+ LABEL about.summary="A mass spectrometry imaging tool bundle for preprocessing workflows"
12+ LABEL about.home="https://github.com/cKNUSPeR/i2nca"
13+ LABEL about.documentation="https://github.com/cKNUSPeR/i2nca"
14+ LABEL about.license_file="https://github.com/cKNUSPeR/i2nca/blob/main/COPYING"
15+ LABEL about.license="SPDX:GPL-3.0-only"
16+ LABEL about.tags="Proteomics"
17+
18+ # ################# MAINTAINER ######################
19+
20+ MAINTAINER Jannik Witte <
[email protected] >
21+
22+ # ################# INSTALLATION ######################
23+
24+ WORKDIR /app
25+
26+ RUN apt-get update && apt-get install -y \
27+ libgl1 \
28+ git \
29+ && apt-get clean \
30+ && rm -rf /var/lib/apt/lists/*
31+
32+ RUN pip install --no-cache-dir --upgrade pip && \
33+ pip install --no-cache-dir i2nca==0.3.12
34+
35+ RUN groupadd -g 1001 biodockergroup && \
36+ useradd -g biodockergroup -u 1001 biodocker
37+
38+ USER biodocker
39+
40+
You can’t perform that action at this time.
0 commit comments