From 32c4e258f6cd974f5b0223a64fe003c9fdc32834 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Jul 2026 06:13:54 +0000 Subject: [PATCH] chore(deps): bump python from 3.11-slim to 3.14-slim in /vote Bumps python from 3.11-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vote/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vote/Dockerfile b/vote/Dockerfile index 9cfd642..427e599 100644 --- a/vote/Dockerfile +++ b/vote/Dockerfile @@ -1,11 +1,11 @@ # ===== Stage 1: Build dependencies ===== -FROM python:3.11-slim AS build +FROM python:3.14-slim AS build WORKDIR /install COPY requirements.txt . RUN pip install --no-cache-dir --prefix=/install/deps -r requirements.txt # ===== Stage 2: Production image (Hardened Slim) ===== -FROM python:3.11-slim +FROM python:3.14-slim RUN apt-get update && apt-get upgrade -y && \ rm -rf /var/lib/apt/lists/* && \ # Remove package managers & shells to reduce attack surface