Created
February 27, 2020 22:50
-
-
Save danielecook/3097fb0ce9b0cfc8e054870054e23669 to your computer and use it in GitHub Desktop.
#Nextflow Docker File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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