From eecdf3a217a2c09f5344abd9ed4f8a420bb0d774 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 02:44:50 +0000 Subject: [PATCH] Bump python from 3.13.0-slim to 3.13.1-slim Bumps python from 3.13.0-slim to 3.13.1-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d3bb972..e2dc72b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Creating a python base with shared environment variables -FROM python:3.13.0 as base +FROM python:3.13.1 as base ENV PIP_NO_CACHE_DIR=off \ PIP_DEFAULT_TIMEOUT=100 \ PIP_DISABLE_PIP_VERSION_CHECK=on \ @@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./ RUN $POETRY_HOME/bin/poetry install --without dev --no-root # `production` stage uses the dependencies downloaded in the `base` stage -FROM python:3.13.0-slim as production +FROM python:3.13.1-slim as production # Install pandoc for markdown to Jira conversions. RUN apt-get -y update && \