From 930d8652c3d2409a4c0d3189a8e83d450c47f280 Mon Sep 17 00:00:00 2001 From: Oleg Korsak Date: Thu, 30 Jan 2025 15:42:18 +0200 Subject: [PATCH] Switched Dockerfile to Python 3.13 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ef00fd..82b41b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim-bookworm AS build-image +FROM python:3.13-slim-bookworm AS build-image ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 @@ -34,7 +34,7 @@ COPY requirements.txt . RUN python3 -m pip wheel --wheel-dir /build/wheels -r requirements.txt -FROM python:3.12-slim-bookworm AS app +FROM python:3.13-slim-bookworm AS app ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1