From 44f255512aa201440c7b1facad1048c340f0a7e1 Mon Sep 17 00:00:00 2001 From: crate Date: Mon, 30 Sep 2024 20:08:39 +0000 Subject: [PATCH] fix dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 278c9a6..4e14a2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /usr/src/app COPY ./requirements.txt . RUN apt update RUN apt install nmap -y -RUN pip install --no-cache-dir -r requirements.txt -vvv +RUN apt install -y python3 python3-pip +RUN pip3 install --no-cache-dir -r requirements.txt -vvv CMD [ "python", "./garfbot.py" ]