Skip to content

Commit 3da9b1b

Browse files
cKNUSPeRJannik
andauthored
updated i2nca to 0.3.12 (#584)
Co-authored-by: Jannik <[email protected]>
1 parent 3bdadab commit 3da9b1b

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

i2nca/0.3.12/Dockerfile

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+

0 commit comments

Comments
 (0)