From 9c8b6eb90d27648c86648a173726a36180316ac9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 12:52:35 +0000 Subject: [PATCH] Bump python from 3.14.5-alpine to 3.14.6-alpine Bumps python from 3.14.5-alpine to 3.14.6-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.14.6-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 353a19d..3d4142c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG OPENAPI_SPEC_VALIDATOR_VERSION=0.9.0 -FROM python:3.14.5-alpine as builder +FROM python:3.14.6-alpine as builder ARG OPENAPI_SPEC_VALIDATOR_VERSION @@ -9,7 +9,7 @@ ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse RUN apk add --no-cache cargo RUN python -m pip wheel --wheel-dir /wheels openapi-spec-validator==${OPENAPI_SPEC_VALIDATOR_VERSION} -FROM python:3.14.5-alpine +FROM python:3.14.6-alpine ARG OPENAPI_SPEC_VALIDATOR_VERSION