The-HellBot / HellBot

A turbocharged telegram userbot written in python 🚀❤️
https://the-hellbot.gitbook.io/
GNU General Public License v3.0
559 stars 2.08k forks source link

Need Dockerfile! #99

Closed PRAPTI220098 closed 2 days ago

PRAPTI220098 commented 3 days ago

Hello, Admins Please Provide Me A Dockerfile.....!

HellBoy-OP commented 3 days ago
FROM debian:11
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get -y install git python3 python3-dev python3-pip python3-venv ffmpeg

RUN pip3 install --upgrade pip

RUN git clone https://github.com/The-HellBot/Plugins.git /root/hellbot

WORKDIR /root/hellbot

RUN pip3 install -U -r requirements.txt

ENV PATH="/home/hellbot/bin:$PATH"

RUN chmod 777 start.sh

CMD ["bash", "start.sh"]