From c77138f2f0c149340587407a47d2e0a45ab60bd5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Aug 2026 10:13:21 +0000 Subject: [PATCH] chore(deps): bump python from 3.11-slim to 3.13-slim Bumps python from 3.11-slim to 3.13-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.13-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81abfb9..5ee7107 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ── Stage 1: Build ────────────────────────────────────────── -FROM python:3.11-slim AS builder +FROM python:3.13-slim AS builder WORKDIR /build COPY requirements.txt . @@ -8,7 +8,7 @@ RUN sed -i '/^python-nmap/d; /^nmap==/d; /^pywinrm/d; /^scapy/d' requirements.tx pip install --no-cache-dir --user -r requirements.txt # ── Stage 2: Runtime ─────────────────────────────────────── -FROM python:3.11-slim +FROM python:3.13-slim ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \