From 046f595a57e247c094089aa38eb039b8fd1cf34f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 22:05:34 +0000 Subject: [PATCH] Bump python from 3.13-slim to 3.13.7-slim Bumps python from 3.13-slim to 3.13.7-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.13.7-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7dbcb7b..8f88a67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-slim@sha256:21e39cf1815802d4c6f89a0d3a166cc67ce58f95b6d1639e68a394c99310d2e5 AS builder +FROM python:3.13.7-slim@sha256:8220ccec22e88cddd9a541cacd1bf48423bda8cdeb1015249e4b298edf86cdc7 AS builder RUN apt-get update && \ apt-get install --no-install-suggests --no-install-recommends --yes pipx @@ -18,7 +18,7 @@ COPY . . RUN poetry install --only main --no-interaction --no-ansi # Runtime stage -FROM python:3.13-slim@sha256:21e39cf1815802d4c6f89a0d3a166cc67ce58f95b6d1639e68a394c99310d2e5 +FROM python:3.13.7-slim@sha256:8220ccec22e88cddd9a541cacd1bf48423bda8cdeb1015249e4b298edf86cdc7 LABEL org.opencontainers.image.source=https://github.com/dalager/graphedexcel LABEL org.opencontainers.image.description="Graphedexcel will take an Excel file and create a graph datastructure and a visualisation of the graph."