From 58bd7a772576ec2562018cd630844392cbdb380a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2026 12:18:54 +0000 Subject: [PATCH] chore(deps): bump python in the containers group Bumps the containers group with 1 update: python. Updates `python` from 3.12-slim to 3.14-slim --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production dependency-group: containers ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2434886..0cd3ab2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM python:3.12-slim AS builder +FROM python:3.14-slim AS builder COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv @@ -20,7 +20,7 @@ COPY tests ./tests CMD ["pytest", "-q"] -FROM python:3.12-slim +FROM python:3.14-slim # Regra 7 em espírito: o serviço não roda como root RUN useradd --create-home --shell /usr/sbin/nologin forge