Spaces:
Running
Running
FROM python:3.10-slim-buster | |
WORKDIR /app | |
COPY requirements.txt ./requirements.txt | |
RUN pip install -r requirements.txt | |
# Install eSpeak - this fixes the pyttsx3 error | |
RUN apt-get update && apt-get install -y espeak | |
COPY . . | |
CMD streamlit run app.py |