Skip to content

Commit 74b14d1

Browse files
marcvergeesLochit-Vinay
authored andcommitted
refactor: ♻️ dockerfile code cleanup
1 parent 29182ec commit 74b14d1

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ FROM python:3.11-slim
44
WORKDIR /app
55

66
# 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
107
RUN apt-get update && apt-get install -y \
118
curl \
12-
ffmpeg \
139
libgl1 \
1410
libglib2.0-0 \
1511
libxcb1 \
@@ -22,7 +18,6 @@ RUN pip install --no-cache-dir -r requirements.txt
2218
# Copy application code
2319
COPY . .
2420

25-
# Fix #118 #116 — PYTHONPATH must be /app (project root), not /app/src
2621
# All imports use api.*, src.* which require the root to be on the path
2722
ENV PYTHONPATH=/app
2823

0 commit comments

Comments
 (0)