GaneshSarode commited on
Commit
c22278b
·
verified ·
1 Parent(s): 0c5c08e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -8
Dockerfile CHANGED
@@ -1,18 +1,15 @@
1
  FROM python:3.10-slim
2
 
3
- # System deps
 
4
  RUN apt-get update && apt-get install -y \
5
  ffmpeg \
6
- git \
7
- build-essential \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
- WORKDIR /app
11
-
12
  COPY requirements.txt .
 
13
 
14
- RUN pip install --upgrade pip \
15
- && pip install --no-cache-dir -r requirements.txt
16
 
17
  CMD ["python", "app.py"]
18
-
 
1
  FROM python:3.10-slim
2
 
3
+ WORKDIR /app
4
+
5
  RUN apt-get update && apt-get install -y \
6
  ffmpeg \
7
+ libsndfile1 \
 
8
  && rm -rf /var/lib/apt/lists/*
9
 
 
 
10
  COPY requirements.txt .
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ COPY app.py .
 
14
 
15
  CMD ["python", "app.py"]