diff --git a/Dockerfile b/Dockerfile index 29db8444..a7265064 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,12 @@ -# Don't Remove Credit @VJ_Bots -# Subscribe YouTube Channel For Amazing Bot @Tech_VJ -# Ask Doubt on telegram @KingVJ01 - FROM python:3.10.8-slim-buster -RUN apt update && apt upgrade -y -RUN apt install git -y +RUN apt-get update && apt-get install -y git + COPY requirements.txt /requirements.txt -RUN cd / -RUN pip3 install -U pip && pip3 install -U -r requirements.txt -RUN mkdir /VJ-File-Store +RUN pip3 install -U pip && pip3 install -r /requirements.txt + WORKDIR /VJ-File-Store COPY . /VJ-File-Store + CMD ["python", "bot.py"]