2020-06-01 12:52:43 +00:00
|
|
|
FROM continuumio/miniconda3:4.8.2
|
|
|
|
LABEL authors="chris.cheshire@crick.ac.uk" \
|
2020-06-01 14:13:30 +00:00
|
|
|
description="Docker image containing all requirements for the nf-core umi_tools module"
|
2020-06-01 12:52:43 +00:00
|
|
|
# Install apt packages
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
procps=2:3.3.15-2 \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install conda packages
|
|
|
|
COPY environment.yml /
|
|
|
|
RUN conda env create -f /environment.yml && conda clean -a
|
2020-06-03 09:22:27 +00:00
|
|
|
ENV PATH /opt/conda/envs/nfcore-umitools-0.1/bin:$PATH
|