garfbot/Dockerfile

18 lines
398 B
Docker
Raw Normal View History

2024-09-30 20:17:39 +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:13:52 +00:00
RUN apt install -y nmap
2024-09-30 20:17:10 +00:00
# RUN apt install -y rustc
2024-09-30 20:13:52 +00:00
RUN apt install -y python3
RUN apt install -y 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" ]