abc1181 commited on
Commit
ca74122
·
verified ·
1 Parent(s): b771d40

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ RUN apt-get update && apt-get install -y espeak-ng ffmpeg gcc python3-dev && rm -rf /var/lib/apt/lists/*
3
+ WORKDIR /app
4
+ COPY . .
5
+ RUN pip install -r requirements.txt
6
+ CMD ["python3", "server.py"]
7
+