From 72c25b4ce99a4d32449d6cb90958e8ddd30f2da9 Mon Sep 17 00:00:00 2001 From: kalana kithmina Date: Sun, 28 Apr 2024 23:33:25 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index afc781e0..38e6e29c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM python:3.9 + RUN apt-get update -y && apt-get upgrade -y RUN apt-get install ffmpeg -y + WORKDIR . COPY . . -RUN pip3 install setuptools -RUN pip3 install --no-cache-dir TgCrypto + RUN pip3 install -r requirements.txt CMD ["python3", "bot.py"]