# FROM python:3.7.9-slim
FROM pytorch/pytorch:1.7.1-cuda11.0-cudnn8-devel
## The MAINTAINER instruction sets the author field of the generated images.
MAINTAINER hanshengren@u.nus.edu

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

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

## Include the following line if you have a requirements.txt file.
RUN apt-get update
RUN apt-get install -y python3
RUN apt-get install -y python3-pip 
RUN pip3 install -r requirements.txt
