Notter7 commited on
Commit
2c87a11
·
verified ·
1 Parent(s): cfb71fd

create dockerfile

Browse files
Files changed (1) hide show
  1. docker file +16 -0
docker file ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y \
6
+ git \
7
+ ffmpeg \
8
+ libsox-dev \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
+ COPY requirements.txt .
12
+ RUN pip install --no-cache-dir -r requirements.txt
13
+
14
+ COPY . .
15
+
16
+ CMD ["python", "app.py"]