garfbot/Dockerfile
2024-09-30 20:17:10 +00:00

18 lines
395 B
Docker
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM python:3.11-bookworm
WORKDIR /usr/src/app
COPY ./requirements.txt .
RUN apt update
RUN apt install -y nmap
# RUN apt install -y rustc
RUN apt install -y python3
RUN apt install -y python3-pip
# 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
CMD [ "python", "./garfbot.py" ]