Revision b07c4351d3d6f9f73d867f82411148328811179f authored by Matt Bull on 24 March 2020, 14:14:27 UTC, committed by GitHub on 24 March 2020, 14:14:27 UTC
1 parent b6201d2
Raw File
Dockerfile
FROM continuumio/miniconda3:latest
LABEL authors="Matt Bull" \
      description="Docker image containing all requirements for the ARTIC project's ncov2019 pipeline"

COPY environment.yml /
RUN apt-get update && apt-get install -y g++ git make procps && apt-get clean -y
RUN git clone https://github.com/artic-network/artic-ncov2019 /artic-ncov2019
RUN /opt/conda/bin/conda env create -f /environment.yml && /opt/conda/bin/conda clean -a
ENV PATH /opt/conda/envs/artic-ncov2019/bin:$PATH
ENTRYPOINT ["/opt/conda/envs/artic-ncov2019/bin/artic"]
back to top