From e4f429a8438717732b774f014e7727d8cc5ff93e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 23:33:21 +0000 Subject: [PATCH] Bump python from 3.12-slim to 3.12.6-slim Bumps python from 3.12-slim to 3.12.6-slim. --- updated-dependencies: - dependency-name: python 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 597f85e..68b0e8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.12 AS requirements-stage +FROM python:3.12.6 AS requirements-stage WORKDIR /tmp RUN pip install poetry COPY ./pyproject.toml ./poetry.lock* /tmp/ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes -FROM python:3.12-slim +FROM python:3.12.6-slim ENV DEBIAN_FRONTEND=noninteractive