garfbot/Dockerfile

12 lines
249 B
Docker
Raw Normal View History

2024-09-30 20:02:21 +00:00
FROM python:3.13.0rc2-bookworm
2023-11-17 18:17:51 +00:00
WORKDIR /usr/src/app
2024-09-30 20:07:15 +00:00
COPY ./requirements.txt .
2024-09-30 20:02:21 +00:00
RUN apt update
2024-09-30 20:04:22 +00:00
RUN apt install nmap -y
2024-09-30 20:08:39 +00:00
RUN apt install -y python3 python3-pip
RUN pip3 install --no-cache-dir -r requirements.txt -vvv
2023-11-17 18:17:51 +00:00
CMD [ "python", "./garfbot.py" ]