garfbot/Dockerfile
2024-09-30 20:08:39 +00:00

12 lines
249 B
Docker

FROM python:3.13.0rc2-bookworm
WORKDIR /usr/src/app
COPY ./requirements.txt .
RUN apt update
RUN apt install nmap -y
RUN apt install -y python3 python3-pip
RUN pip3 install --no-cache-dir -r requirements.txt -vvv
CMD [ "python", "./garfbot.py" ]