We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29182ec commit 74b14d1Copy full SHA for 74b14d1
1 file changed
Dockerfile
@@ -4,12 +4,8 @@ FROM python:3.11-slim
4
WORKDIR /app
5
6
# Install system dependencies
7
-# Fixes #275 #191 #184 — libGL and libglib2 required by faster-whisper / OpenCV
8
-# Fixes #53 — libxcb1 missing from python:3.11-slim base image
9
-# ffmpeg required by faster-whisper for audio processing
10
RUN apt-get update && apt-get install -y \
11
curl \
12
- ffmpeg \
13
libgl1 \
14
libglib2.0-0 \
15
libxcb1 \
@@ -22,7 +18,6 @@ RUN pip install --no-cache-dir -r requirements.txt
22
18
# Copy application code
23
19
COPY . .
24
20
25
-# Fix #118 #116 — PYTHONPATH must be /app (project root), not /app/src
26
21
# All imports use api.*, src.* which require the root to be on the path
27
ENV PYTHONPATH=/app
28
0 commit comments