Spaces:
Runtime error
Runtime error
File size: 256 Bytes
394fd0f d26b9c4 663dd9d d26b9c4 394fd0f f3a6ceb 0e756ef 59665f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.10
RUN apt update
RUN apt install portaudio19-dev -y
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user . /app
RUN pip install huggingface_hub hf_transfer
CMD ["python","app.py"]
|