From b7ed934331edaab33392cb9130adebd10ff88d03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Oct 2025 20:06:38 +0200 Subject: [PATCH] Bump python from 3.13-alpine to 3.14-alpine in /docker (#952) Bumps python from 3.13-alpine to 3.14-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f17b951c..b7226076 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -54,7 +54,7 @@ RUN make && chmod +x wg* # # Use the python-alpine image for building pip dependencies -FROM python:3.13-alpine AS pip-builder +FROM python:3.14-alpine AS pip-builder # Add the build dependencies and create a Python virtual environment. RUN apk add --no-cache \ @@ -81,7 +81,7 @@ RUN . /opt/wgdashboard/src/venv/bin/activate && \ # # Running with the python-alpine image. -FROM python:3.13-alpine AS final +FROM python:3.14-alpine AS final LABEL maintainer="dselen@nerthus.nl" # Install only the runtime dependencies