Spaces:
Runtime error
Runtime error
File size: 235 Bytes
922b8c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.10.11
# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
WORKDIR /app
COPY . /app
RUN pip install streamlit-audiorec
RUN pip install transformers
CMD ["python", "app.py"] |