From 29ce7d4c2fc389d8ee768fba3dc777b29088076a Mon Sep 17 00:00:00 2001 From: Ta234502 Date: Mon, 9 Mar 2026 17:25:56 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) 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"]