From c38e3ba8c018301887fde0b1b5800539c5739a45 Mon Sep 17 00:00:00 2001 From: The0Mikkel Date: Thu, 13 Mar 2025 23:14:24 +0100 Subject: [PATCH] fix(Docker): lock Docker to use Python v3.13 This solves #10 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ac351b..d36fcb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3-alpine +FROM python:3.13-alpine # Set environment variables to prevent Python from writing .pyc files to disk and buffering stdout and stderr ENV PYTHONDONTWRITEBYTECODE=1