Mercurial > repos > metexplore > met4j
view Dockerfile @ 1:9b162ee6ff8e draft
planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit 12798951d21c3b2b13514b38148b2848cb422c95
author | metexplore |
---|---|
date | Mon, 27 Jun 2022 13:41:08 +0000 |
parents | dcd16521b969 |
children | 7a6f2380fc1d |
line wrap: on
line source
FROM python:3.8-buster # set author MAINTAINER Ludovic Cottret <ludovic.cottret@inrae.fr> # set encoding ENV LC_ALL en_US.UTF-8 ENV LANG en_US.UTF-8 ENV PLANEMO_VENV_LOCATION /planemo-venv ENV CONDA /tmp/conda RUN \ apt-get update \ && apt-get install -y --no-install-recommends \ ed \ less \ locales \ vim-tiny \ wget \ ca-certificates \ fonts-texgyre \ build-essential \ libseccomp-dev \ pkg-config \ squashfs-tools \ cryptsetup \ && echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \ && locale-gen en_US.utf8 \ && /usr/sbin/update-locale LANG=en_US.UTF-8 \ && echo "deb http://http.debian.net/debian buster main" > /etc/apt/sources.list.d/debian-unstable.list \ && echo 'APT::Default-Release "buster";' > /etc/apt/apt.conf.d/default \ && echo 'APT::Install-Recommends "false";' > /etc/apt/apt.conf.d/90local-no-recommends \ && apt-get update \ && apt-get upgrade -y \ && apt-get install -y --no-install-recommends \ git \ littler \ libhdf5-dev \ python-virtualenv \ && pip install virtualenv \ && python -m virtualenv "$PLANEMO_VENV_LOCATION" \ && . "$PLANEMO_VENV_LOCATION"/bin/activate \ && pip install --upgrade pip setuptools \ && pip install planemo numpy \ && planemo conda_init --conda_prefix "$CONDA" \ && apt-get clean autoclean \ && apt-get autoremove --yes \ && rm -rf /var/lib/{apt,dpkg,cache,log}/ \ && rm -rf /usr/bin/X11 \ && rm -rf /tmp/* SHELL ["/bin/bash", "-c"] RUN \ export VERSION=1.17.2 OS=linux ARCH=amd64 \ && wget https://dl.google.com/go/go$VERSION.$OS-$ARCH.tar.gz \ && tar -C /usr/local -xzvf go$VERSION.$OS-$ARCH.tar.gz \ && rm go$VERSION.$OS-$ARCH.tar.gz \ && echo 'export PATH=/usr/local/go/bin:$PATH' >> ~/.bashrc \ && source ~/.bashrc RUN \ echo 'export PATH=/usr/local/go/bin:$PATH' >> ~/.bashrc \ && source ~/.bashrc \ && export VERSION=3.10.0 \ && wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-ce-${VERSION}.tar.gz \ && tar -xzf singularity-ce-${VERSION}.tar.gz \ && cd singularity-ce-${VERSION} \ && ./mconfig && \ make -C builddir && \ make -C builddir install CMD []