Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated i2nca from v0.3.0 to v0.3.12 #584

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions i2nca/0.3.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
################## BASE IMAGE ######################

FROM python:3.10.8

################## METADATA ######################

LABEL base_image="python:3.10.8"
LABEL version="1"
LABEL software="i2nca"
LABEL software.version="0.3.12"
LABEL about.summary="A mass spectrometry imaging tool bundle for preprocessing workflows"
LABEL about.home="https://github.com/cKNUSPeR/i2nca"
LABEL about.documentation="https://github.com/cKNUSPeR/i2nca"
LABEL about.license_file="https://github.com/cKNUSPeR/i2nca/blob/main/COPYING"
LABEL about.license="SPDX:GPL-3.0-only"
LABEL about.tags="Proteomics"

################## MAINTAINER ######################

MAINTAINER Jannik Witte <[email protected]>

################## INSTALLATION ######################

WORKDIR /app

RUN apt-get update && apt-get install -y \
libgl1 \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir i2nca==0.3.12

RUN groupadd -g 1001 biodockergroup && \
useradd -g biodockergroup -u 1001 biodocker

USER biodocker