Spaces:
Sleeping
Sleeping
Commit
·
03548eb
1
Parent(s):
d609a94
- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -8,8 +8,8 @@ WORKDIR /app
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
|
| 11 |
-
# Install additional system dependencies for soundfile
|
| 12 |
-
RUN apt-get update && apt-get install -y libsndfile1
|
| 13 |
|
| 14 |
# Copy the application code.
|
| 15 |
COPY . .
|
|
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
|
| 11 |
+
# Install additional system dependencies for soundfile and ffmpeg
|
| 12 |
+
RUN apt-get update && apt-get install -y libsndfile1 ffmpeg
|
| 13 |
|
| 14 |
# Copy the application code.
|
| 15 |
COPY . .
|