From 7be48ad37afefb223833116084284a8d2e41e1bd Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Wed, 4 Apr 2018 14:21:03 +0200 Subject: [PATCH] Updated Dockerfile to use new nfcore base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0127bcc..abf7f6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM continuumio/miniconda +FROM nfcore/base MAINTAINER Phil Ewels LABEL authors="phil.ewels@scilifelab.se" \ description="Docker image containing all requirements for the nf-core/methylseq pipeline" COPY environment.yml / -RUN conda env create -f /environment.yml +RUN conda env create -f /environment.yml && conda clean -a ENV PATH /opt/conda/envs/nfcore-methylseq/bin:$PATH