From dfac5753a1528ca8e0180057cf585070e29c741d Mon Sep 17 00:00:00 2001 From: crate Date: Mon, 30 Sep 2024 20:17:10 +0000 Subject: [PATCH] dockerfile python version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6a968da..ad21a80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.13.0rc2-bookworm +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 rustc RUN apt install -y python3 RUN apt install -y python3-pip # RUN pip3 install --no-cache-dir -r requirements.txt -vvv