FROM pytorch/pytorch
# docker build -t ubuntu/firstimage .
# docker run --rm -it --init --gpus=all -v /home/ubuntu/project/runs/Aug20_02-34-04_ip-172-31-39-144:/physionet/run -v /home/ubuntu/datasets:/physionet/datasets  ubuntu/firstimage /bin/bash

RUN pip install numpy~=1.19.1
RUN pip install scipy~=1.5.2
RUN pip install future
RUN pip install torch~=1.6.0

## The MAINTAINER instruction sets the Author field of the generated images
MAINTAINER weber-lucas@web.de
## DO NOT EDIT THESE 3 lines
RUN mkdir /physionet
COPY ./ /physionet
WORKDIR /physionet

# make a results dir
RUN mkdir results

# make a runs dir
RUN mkdir runs

## Install your dependencies here using apt-get etc.

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

