Browser-back / Dockerfile
Nrighton233j
Add yt-dlp video extraction, page scraper, and speed optimizations (session reuse, parallel related-links search, caching)
080713a
Raw
History Blame Contribute Delete
296 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]