From a726b28e0d99d0c64d6e65f3c59de7c90c9d09c4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 15 Dec 2024 03:00:41 +0000 Subject: [PATCH] Update python Docker tag to v3.13 (#14) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4bf9a7a..d4bfef9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the requirements.txt using Poetry -FROM python:3.12-slim AS builder +FROM python:3.13-slim AS builder # Set environment variables for Python ENV PYTHONDONTWRITEBYTECODE 1 @@ -24,7 +24,7 @@ COPY pyproject.toml poetry.lock /app/ RUN poetry self add poetry-plugin-export && poetry export --format=requirements.txt --output=requirements.txt --only=main --without-hashes # Stage 2: Install dependencies and run the Django application -FROM python:3.12-slim AS runner +FROM python:3.13-slim AS runner # Set environment variables for Python ENV PYTHONDONTWRITEBYTECODE 1