-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingularity.def
More file actions
61 lines (46 loc) · 1.46 KB
/
singularity.def
File metadata and controls
61 lines (46 loc) · 1.46 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Bootstrap: docker
From: condaforge/miniforge3:24.3.0-0
Stage: build
%files
environment.yml .
%labels
MyLabel nspectra
authors="andrea.talenti@ed.ac.uk"
description="Docker image containing base requirements for nf-LO pipelines"
%post
# Install the package as normal:
conda env create -f environment.yml
# Install conda-pack:
conda install -c conda-forge conda-pack
# Use conda-pack to create a standalone enviornment
# in /venv:
conda-pack -n nspectra -o /tmp/env.tar && \
mkdir /venv && cd /venv && tar xf /tmp/env.tar && \
rm /tmp/env.tar
# We've put venv in same path it'll be in final image,
# so now fix up paths:
/venv/bin/conda-unpack
# The runtime-stage image; we can use Debian as the
# base image since the Conda env also includes Python
# for us.
Bootstrap: docker
From: ubuntu:24.04
Stage: runtime
%files from build
/venv /venv
%post
# Install procps in debian to make it compatible with reporting
apt-get update && apt install -y file jellyfish procps g++ curl git wget parallel && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
curl -o /usr/local/bin/datasets https://ftp.ncbi.nlm.nih.gov/pub/datasets/command-line/LATEST/linux-amd64/datasets && \
chmod a+x /usr/local/bin/datasets
# Copy /venv from the previous stage:
# When image is run, run the code with the environment
# activated:
PATH=/venv/bin/:$PATH
SHELL ["/bin/bash", "-c"]
%environment
export PATH=/venv/bin/:$PATH
%runscript
exec /bin/bash "$@"
%startscript
exec /bin/bash "$@"