Skip to content
Snippets Groups Projects
Commit b7b4eb76 authored by Jeffrey Pullin's avatar Jeffrey Pullin
Browse files

Remove Dockerfile

parent 4ced4aa3
No related branches found
No related tags found
No related merge requests found
Pipeline #10747 passed
FROM nfcore/base
LABEL authors="dmccarthy@svi.edu.au" \
maintainer="Davis McCarthy <dmccarthy@svi.edu.au>" \
description="Docker image containing all requirements for AAAA_2019_Project-Template"
RUN apt-get update && \
apt-get -y upgrade && \
apt-get install -y --no-install-recommends \
build-essential \
curl \
git \
libbz2-dev \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
COPY environment.yml /
RUN conda env create -f /environment.yml python=3.6 && conda clean -a
ENV PATH /opt/conda/envs/AAAA_2019_Project-Template/bin:$PATH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment