garfbot/Dockerfile

11 lines
209 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
2023-11-17 18:17:51 +00:00
RUN pip install --no-cache-dir -r requirements.txt -vvv
CMD [ "python", "./garfbot.py" ]