chore(deps): update python docker tag to v3.13

This commit is contained in:
renovate[bot] 2024-10-08 00:43:11 +00:00 committed by GitHub
parent 32cad0faa4
commit 767c370642
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ ARG LIBRETIME_VERSION
#======================================================================================#
# Python Builder #
#======================================================================================#
FROM python:3.10-slim-bullseye AS python-builder
FROM python:3.13-slim-bullseye AS python-builder
WORKDIR /build
@ -18,7 +18,7 @@ RUN pip wheel --wheel-dir . --no-deps .
#======================================================================================#
# Python base #
#======================================================================================#
FROM python:3.10-slim-bullseye AS python-base
FROM python:3.13-slim-bullseye AS python-base
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1