Spaces:
Runtime error
Runtime error
File size: 186 Bytes
40c9da3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.7
EXPOSE 8501
WORKDIR /workspace
COPY requirements.txt common_voice.py ./
RUN pip install -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "common_voice.py"]
|