Haseeb-001 commited on
Commit
7d38e84
·
verified ·
1 Parent(s): db2aa91

Create DockerFile

Browse files
Files changed (1) hide show
  1. DockerFile +13 -0
DockerFile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim-buster
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt ./requirements.txt
6
+ RUN pip install -r requirements.txt
7
+
8
+ # Install eSpeak - this fixes the pyttsx3 error
9
+ RUN apt-get update && apt-get install -y espeak
10
+
11
+ COPY . .
12
+
13
+ CMD streamlit run app.py