File size: 457 Bytes
3aa8455 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
git \
curl \
libcurl4-openssl-dev \
libssl-dev \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/MarkMCFC/forbin .
RUN pip install flask curl-cffi m3u8 gunicorn
ENV PYTHONPATH=/app
EXPOSE 7860
CMD ["gunicorn", "--workers", "5", "--worker-class", "gthread", "--threads", "4", "--bind", "0.0.0.0:7860", "proxy:app"]
|