nf-core_modules/tools/umi_tools/Dockerfile

23 lines
657 B
Docker
Raw Normal View History

FROM continuumio/miniconda3:4.8.2
LABEL authors="chris.cheshire@crick.ac.uk" \
description="Docker image containing all requirements for the nf-core umi_tools module"
# Install apt packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git=1:2.20.1-2+deb10u3 \
apt-utils=1.8.2 \
unzip=6.0-23+deb10u1 \
procps=2:3.3.15-2 \
build-essential=12.6 \
zlib1g-dev=1:1.2.11.dfsg-1 \
&& 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
ENV PATH /opt/conda/envs/nfcore-umitools-0.1/bin:$PATH
# Reset work dir
WORKDIR /home