mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
15 lines
No EOL
505 B
Docker
15 lines
No EOL
505 B
Docker
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 \
|
|
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
|
|
ENV PATH /opt/conda/envs/nfcore-module-umitools/bin:$PATH |