kowalsky commited on
Commit
aaa944c
·
1 Parent(s): 6371b37
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -5,8 +5,12 @@ FROM python:3.12-slim
5
  ENV PYTHONDONTWRITEBYTECODE=1
6
  ENV PYTHONUNBUFFERED=1
7
 
8
- # Install FFmpeg
9
- RUN apt-get update && apt-get install -y ffmpeg
 
 
 
 
10
 
11
  # Create and set the working directory
12
  WORKDIR /app
 
5
  ENV PYTHONDONTWRITEBYTECODE=1
6
  ENV PYTHONUNBUFFERED=1
7
 
8
+ # Install system dependencies
9
+ RUN apt-get update && apt-get install -y \
10
+ ffmpeg \
11
+ gcc \
12
+ libasound-dev \
13
+ portaudio19-dev
14
 
15
  # Create and set the working directory
16
  WORKDIR /app