Skip to content

Instantly share code, notes, and snippets.

@danielecook
Created February 27, 2020 22:50
Show Gist options
  • Save danielecook/3097fb0ce9b0cfc8e054870054e23669 to your computer and use it in GitHub Desktop.
Save danielecook/3097fb0ce9b0cfc8e054870054e23669 to your computer and use it in GitHub Desktop.
#Nextflow Docker File
# docker build --file manta.Dockerfile -t swantonlab/manta .
FROM continuumio/miniconda3
RUN apt-get update && apt-get install -y procps
RUN conda config --add channels defaults && \
conda config --add channels bioconda && \
conda config --add channels conda-forge
RUN conda create -n manta bioconda::manta=1.6.0 && conda clean -a
ENV PATH /opt/conda/envs/manta/bin:$PATH
RUN conda env export --name manta > manta.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment