From 2d90b57235cf8e967fb3dd794add0c5fb459d3ee Mon Sep 17 00:00:00 2001 From: burned42 Date: Fri, 7 Feb 2025 23:27:24 +0100 Subject: [PATCH] fix docker image build by using python 3.13 base image I'm not sure why this fixes the image build, but I found others on the internet suggesting that using "the current" version image fixes this kind of issue and it indeed fixed the issue and I was able to build the image with this adjustment. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f6c120..ec41feb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine +FROM python:3.13-alpine RUN adduser -S fabcal -- 2.47.2