From 5bea12a87fb10222d9d822cc5f4cfb33effc18b8 Mon Sep 17 00:00:00 2001 From: Renovate Date: Thu, 6 Feb 2025 22:30:20 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.13.2 --- images/fava/Dockerfile | 4 ++-- images/python-script/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/fava/Dockerfile b/images/fava/Dockerfile index 8d32230..4265dec 100644 --- a/images/fava/Dockerfile +++ b/images/fava/Dockerfile @@ -19,7 +19,7 @@ RUN set -eux; \ find . -type f -name '*.py[c0]' -delete; \ find . -type d -name "__pycache__" -delete; -FROM python:3.13.1-slim AS build_env +FROM python:3.13.2-slim AS build_env ARG BEANCOUNT_VERSION ENV PATH "/app/bin:$PATH" @@ -44,7 +44,7 @@ RUN set -eux; \ rm -r /app/share; \ find /app -name __pycache__ -exec rm -rf -v {} + -FROM python:3.13.1-slim +FROM python:3.13.2-slim COPY --from=build_env /app /app # Default fava port number diff --git a/images/python-script/Dockerfile b/images/python-script/Dockerfile index ea7f12d..902fc9a 100644 --- a/images/python-script/Dockerfile +++ b/images/python-script/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.1-slim-bookworm +FROM python:3.13.2-slim-bookworm RUN set -e; \ apt-get update -q; \ -- 2.45.3