medi-call / DockerFile
Haseeb-001's picture
Create DockerFile
7d38e84 verified
raw
history blame contribute delete
253 Bytes
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