diff --git a/Dockerfile b/Dockerfile index 3862048..e161fce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,10 @@ -FROM python:3.11 +FROM python:3.13.0rc2-bookworm WORKDIR /usr/src/app COPY requirements.txt ./ +RUN apt update +Run apt install nmap RUN pip install --no-cache-dir -r requirements.txt -vvv CMD [ "python", "./garfbot.py" ]