SohomToom commited on
Commit
7a5d479
·
verified ·
1 Parent(s): 23fd38c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # System deps
4
+ RUN apt-get update && apt-get install -y \
5
+ espeak-ng \
6
+ && rm -rf /var/lib/apt/lists/*
7
+
8
+ # Python deps
9
+ COPY requirements.txt .
10
+ RUN pip install -r requirements.txt
11
+
12
+ # App
13
+ COPY app.py .
14
+
15
+ CMD ["python", "app.py"]