join-tfms-xyz / Dockerfile
docs4you's picture
Update Dockerfile
cc29de6 verified
raw
history blame contribute delete
438 Bytes
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/tfms.xyz .
RUN pip install flask curl-cffi m3u8 gunicorn
EXPOSE 7870
CMD ["gunicorn", "--workers", "5", "--worker-class", "gthread", "--threads", "4", "--bind", "0.0.0.0:7860", "proxy:app"]