FROM python:3.9.7-buster

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

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

## Install your dependencies here using apt install, etc.
RUN apt-get update -y && apt-get install -y --no-install-recommends build-essential gcc \
                                        libsndfile1 

## Include the following line if you have a requirements.txt file.
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
