Spaces:
Runtime error
Runtime error
| FROM python:3.8-slim | |
| WORKDIR /app | |
| COPY . /app | |
| COPY mitbih_train.csv /app/mitbih_train.csv | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| EXPOSE 8050 | |
| CMD ["gunicorn", "-b", "0.0.0.0:8050", "app:server"] |