Spaces:
Runtime error
Runtime error
| FROM python:3.10.11-slim | |
| WORKDIR $HOME/app | |
| COPY requirements.txt $HOME/app | |
| RUN mkdir /.cache && chmod 777 /.cache | |
| RUN pip install -r requirements.txt | |
| COPY . $HOME/app | |
| RUN python kitt.py download-files | |
| CMD python kitt.py start |