From d5a045c2a295a450acab2008c35b4555b519c711 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 15:39:10 +0000 Subject: [PATCH] Bump python from 3.11-slim to 3.12-slim Bumps python from 3.11-slim to 3.12-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 df7c80f..f30c77e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.11 AS build +FROM python:3.12 AS build 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.11-slim +FROM python:3.12-slim WORKDIR /code COPY --from=build /tmp/requirements.txt /code/requirements.txt