garfbot/Dockerfile

18 lines
369 B
Docker
Raw Normal View History

2024-09-30 20:21:46 +00:00
FROM python:3.11.10-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:25:22 +00:00
RUN apt install -y iputils-ping
RUN apt install -y dnsutils
2024-09-30 20:13:52 +00:00
RUN apt install -y nmap
RUN apt install -y python3
RUN apt install -y python3-pip
2024-09-30 20:10:44 +00:00
RUN pip3 install discord
RUN pip3 install openai
RUN pip3 install aiohttp
RUN pip3 install requests
2023-11-17 18:17:51 +00:00
CMD [ "python", "./garfbot.py" ]