FROM python:3.9-slim WORKDIR /app RUN apt-get update && apt-get install -y git RUN git clone -b python https://github.com/EverythingSuckz/TG-FileStreamBot.git . RUN pip install -r requirements.txt CMD ["python3", "-m", "WebStreamer"]