FROM pytorch/pytorch:1.9.1-cuda11.1-cudnn8-runtime
## The MAINTAINER instruction sets the Author field of the generated images
MAINTAINER nejedly@isibrno.cz

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

## Install your dependencies here using apt install, etc.
RUN ln -s /usr/bin/python3 /usr/bin/python && \
    ln -s /usr/bin/pip3 /usr/bin/pip

## Include the following line if you have a requirements.txt file.
RUN pip install -r requirements.txt
