Streamixph-player / Dockerfile
Streamixph05's picture
Update Dockerfile
71f8cc6 verified
raw
history blame contribute delete
238 Bytes
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"]