From a4d471df4f35826df7ded49dd80172430a89d0cb Mon Sep 17 00:00:00 2001 From: DaanSelen <80752476+DaanSelen@users.noreply.github.com> Date: Fri, 12 Dec 2025 16:32:48 +0100 Subject: [PATCH] chore: downgrade python due to compatibility --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e0b0b3b4..eee24599 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -55,7 +55,7 @@ RUN make && chmod +x wg* # # Use the python-alpine image for building pip dependencies -FROM python:3.14-alpine AS pip-builder +FROM python:3.13-alpine AS pip-builder ARG TARGETPLATFORM @@ -91,7 +91,7 @@ RUN . /opt/wgdashboard/src/venv/bin/activate && \ # # Running with the python-alpine image. -FROM python:3.14-alpine AS final +FROM python:3.13-alpine AS final LABEL maintainer="dselen@nerthus.nl" # Install only the runtime dependencies