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