clipforge / Dockerfile
moonlantern1's picture
Harden YouTube downloads on Hugging Face
e073547 verified
raw
history blame contribute delete
377 Bytes
FROM python:3.12-slim-bookworm
ENV PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PORT=7860
WORKDIR /app
RUN apt-get update && \
apt-get install -y ffmpeg nodejs ca-certificates && \
rm -rf /var/lib/apt/lists/*
COPY . /app
RUN pip install --upgrade pip && \
pip install ./humeo-core && \
pip install .
EXPOSE 7860
CMD ["python", "app.py"]