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

Added container for seeksoultools v 1.2.0 #563

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
30 changes: 30 additions & 0 deletions seeksoultools/1.2.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Base Image
FROM continuumio/miniconda3:4.6.14

# Metadata
LABEL software="seeksoultools" \
base_image="continuumio/miniconda3:4.6.14" \
container="seeksoultools" \
about.summary="Software developed by SEEKGENE for processing single-cell transcriptome data" \
about.home="https://www.seekgene.com/fxrj" \
about.documentation="http://seeksoul.seekgene.com/en/v1.2.0/index.html" \
software.version="1.2.0" \
version="1" \
about.copyright="2023 SeekGene BioSciences" \
about.license="Custom License" \
about.license_file="/seeksoultools.1.2.0/lib/python3.10/site-packages/seeksoultools-1.2.0.dist-info/LICENSE" \
about.tags=""

# Maintainer
LABEL maintainer="Evgeny Karpulevich <[email protected]>"

SHELL ["/bin/bash", "-c"]

RUN mkdir seeksoultools.1.2.0 && cd seeksoultools.1.2.0 && wget -c -O seeksoultools.1.2.0.tar.gz "https://seekgene-public.oss-cn-beijing.aliyuncs.com/software/seeksoultools/seeksoultools.1.2.0.tar.gz" && tar zxf seeksoultools.1.2.0.tar.gz; . /seeksoultools.1.2.0/bin/activate && /seeksoultools.1.2.0/bin/conda-unpack && apt-get clean && apt-get purge && rm -rf /var/lib/apt/lists/* /tmp/* seeksoultools.1.2.0.tar.gz

USER biodocker
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This user is not created.
You need to create it beforehand


ENV PATH /seeksoultools.1.2.0/bin:$PATH

WORKDIR /data/

2 changes: 2 additions & 0 deletions seeksoultools/1.2.0/test-cmds.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
seeksoultools --version
seeksoultools --help
Loading