fix dockerfile

This commit is contained in:
crate 2024-09-30 20:08:39 +00:00
parent e69d1ca233
commit 44f255512a

View File

@ -5,6 +5,7 @@ WORKDIR /usr/src/app
COPY ./requirements.txt . COPY ./requirements.txt .
RUN apt update RUN apt update
RUN apt install nmap -y RUN apt install nmap -y
RUN pip install --no-cache-dir -r requirements.txt -vvv RUN apt install -y python3 python3-pip
RUN pip3 install --no-cache-dir -r requirements.txt -vvv
CMD [ "python", "./garfbot.py" ] CMD [ "python", "./garfbot.py" ]