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
|
2024-09-30 20:10:44 +00:00
|
|
|
# RUN pip3 install --no-cache-dir -r requirements.txt -vvv
|
|
|
|
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" ]
|