Spaces:
Paused
Paused
| ## Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker | |
| # you will also find guides on how best to write your Dockerfile | |
| FROM python:3.9-slim | |
| WORKDIR /app | |
| COPY requirements.txt /app/ | |
| RUN pip install -r requirements.txt | |
| COPY. /app/ | |
| RUN apt-get update && apt-get install -y supervisor | |
| COPY supervisord.conf /etc/supervisor/conf.d/ | |
| CMD ["supervisord", "-n"] |