FROM python:3.7

LABEL maintainer='ming.wu@tum.de'


RUN apt-get update \
    && apt-get install -y \
        build-essential \
        cmake \
        git \
        curl \
        vim \
   && rm -rf /var/lib/apt/lists/*

WORKDIR /GRNBOOST2

COPY . /GRNBOOST2

RUN pip install --trusted-host pypi.python.org -r requirements.txt

RUN ls ./

RUN ["python", "run_grnboost2.py"]







