From 445d305d7090d5155cb27ca9c37490e96f5f7cf5 Mon Sep 17 00:00:00 2001 From: nservant <nservant@curie.fr> Date: Fri, 19 Apr 2019 19:24:06 +0200 Subject: [PATCH] add gcc to docker --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4d28385..3991aa9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM nfcore/base LABEL authors="Nicolas Servant" \ description="Docker image containing all requirements for nf-core/hic pipeline" +## Install gcc for pip CellProfiler install +RUN apt-get update && apt-get install -y gcc g++ && apt-get clean -y + COPY environment.yml / RUN conda env create -f /environment.yml && conda clean -a ENV PATH /opt/conda/envs/nf-core-hic-1.0dev/bin:$PATH -- GitLab