From 66c750e3f8798135a8bde8c7893600ed981ec41c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 19:12:55 +0000 Subject: [PATCH] build(deps): bump python from 3.11-slim-bullseye to 3.12-slim-bullseye Bumps python from 3.11-slim-bullseye to 3.12-slim-bullseye. --- 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 fb7ac21..88bc377 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim-bullseye AS builder +FROM python:3.12-slim-bullseye AS builder ENV LC_ALL=C.UTF-8 \ LANG=C.UTF-8 \ @@ -29,7 +29,7 @@ ADD pyproject.toml pdm.lock /opt/ansible/ RUN python3 -m pip install --user pdm \ && /home/ansible/.local/bin/pdm sync --clean --production --no-editable -FROM python:3.11-slim-bullseye AS runtime +FROM python:3.12-slim-bullseye AS runtime RUN apt-get -qqy update \ && apt-get -qqy upgrade \