FROM python:3.7.4

## The MAINTAINER instruction sets the Author field of the generated images
MAINTAINER author@sample.com
## DO NOT EDIT THESE 3 lines
RUN mkdir /physionet
COPY ./ /physionet
WORKDIR /physionet

## Install your dependencies here using apt-get etc.
RUN pip install cython
RUN pip install numpy==1.16.5
RUN echo compiler = mingw32
#RUN apt-get update && apt-get install -y unzip
#RUN unzip finalized_model.zip


## Do not edit if you have a requirements.txt
RUN pip install -r requirements.txt

