FROM python:3.8.6-slim

FROM tensorflow/tensorflow:2.3.1-gpu-jupyter
#CMD nvidia-smi


## The MAINTAINER instruction sets the author field of the generated images.
#MAINTAINER author@example.com

## DO NOT EDIT the 3 lines.
RUN mkdir /physionet
COPY ./ /physionet
WORKDIR /physionet

## Install your dependencies here using apt install, etc.

RUN pip install --upgrade pip
RUN pip install pandas
RUN pip install scipy
RUN pip install -U tensorflow==2.3.1
RUN pip install keras
#RUN pip install kaggle
RUN pip install -U scikit-learn
