Skip to content
Snippets Groups Projects
Verified Commit 97f4337f authored by Laurent Modolo's avatar Laurent Modolo
Browse files

pigz: add singularity files

parent a8472a83
No related branches found
No related tags found
No related merge requests found
#/bin/sh
sudo singularity build --force bin/pigz:2.4.sif src/singularity_modules/pigz/2.4/pigz.def
singularity sign bin/pigz:2.4.sif
Bootstrap: docker
From: ubuntu:18.04
%labels
MAINTAINER Laurent Modolo
%post
PIGZ_VERSION=2.4
PACKAGES=pigz=${PIGZ_VERSION}*
apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
%environment
export PIGZ_VERSION=2.4
export PACKAGES=pigz=${PIGZ_VERSION}*
%runscript
exec /bin/bash "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment