From 2533be81931c299cd6c6e8944e5179984b8a83ea Mon Sep 17 00:00:00 2001 From: crate Date: Mon, 30 Sep 2024 20:04:22 +0000 Subject: [PATCH] fix dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ead6804..3b05075 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/app COPY requirements.txt ./ RUN apt update -RUN apt install nmap +RUN apt install nmap -y RUN pip install --no-cache-dir -r requirements.txt -vvv CMD [ "python", "./garfbot.py" ]