From 437560a5590798928ab24320da1e15363ea3ff0b Mon Sep 17 00:00:00 2001
From: nservant <nservant@curie.fr>
Date: Fri, 19 Apr 2019 19:23:11 +0200
Subject: [PATCH] add gcc to docker

---
 Dockerfile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Dockerfile b/Dockerfile
index 4d28385..490ee36 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 iced 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