Bootstrap: docker
From: ubuntu:18.04

%labels
MAINTAINER Laurent Modolo

%pos
mkdir -p /sps /pbs /scratch
CANU_VERSION=1.6
PACKAGES=canu=${CANU_VERSION}*

apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean

%environment
export CANU_VERSION=1.6

%runscript
exec /bin/bash "$@"