Spaces:
Running
Running
Create DockerFile
Browse files- 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
|