Skip to content
Snippets Groups Projects
Dockerfile 379 B
Newer Older
FROM nfcore/base
LABEL authors="Nicolas Servant" \
      description="Docker image containing all requirements for nf-core/hic pipeline"

nservant's avatar
nservant committed
## 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
nservant's avatar
nservant committed
ENV PATH /opt/conda/envs/nf-core-hic-1.0.0/bin:$PATH