update dockerfile

This commit is contained in:
crate 2024-09-30 20:02:21 +00:00
parent 41c27b5094
commit 1c922bd48b

View File

@ -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" ]