hbs2/Sutme
0
1FROM python:3.11-slim-bullseye2 3WORKDIR /subgen4 5ADD https://raw.githubusercontent.com/McCloudS/subgen/main/requirements.txt /subgen/requirements.txt6 7RUN apt-get update \8 && apt-get install -y \9 python3 \10 python3-pip \11 ffmpeg \12 && apt-get clean \13 && rm -rf /var/lib/apt/lists/* \14 && pip install -r requirements.txt15 16ENV PYTHONUNBUFFERED=117 18ADD https://raw.githubusercontent.com/McCloudS/subgen/main/launcher.py /subgen/launcher.py19ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen.py /subgen/subgen.py20 21CMD [ "bash", "-c", "python3 -u launcher.py" ]22 