CoolFace
Apppublic

kaztoru/dproxy

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM python:3.12-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    build-essential \7    git \8    curl \9    libcurl4-openssl-dev \10    libssl-dev \11    && rm -rf /var/lib/apt/lists/*12 13RUN git clone https://github.com/pigzillaaaaa/daddylive .14 15RUN pip install flask curl-cffi m3u8 gunicorn16 17EXPOSE 786018 19CMD ["gunicorn", "--workers", "5", "--worker-class", "gthread", "--threads", "4", "--bind", "0.0.0.0:7860", "proxy:app"]20