From 8ce2571bee1e1de951cc0c103ac56ad26cd1de0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 23:09:34 +0000 Subject: [PATCH] Bump python from 3.11-slim to 3.11.8-slim in /containers Bumps python from 3.11-slim to 3.11.8-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- containers/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/Dockerfile b/containers/Dockerfile index 3f6f773..580cd72 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim as builder +FROM python:3.11.8-slim as builder WORKDIR /app COPY . /app/ RUN apt-get update && apt-get install -y curl=* \ @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y curl=* \ && pip install --no-cache-dir poetry==1.1.9 \ && ./bin/task build -FROM python:3.11-slim +FROM python:3.11.8-slim LABEL org.opencontainers.image.source="https://github.com/mbovo/pdh" LABEL org.opencontainers.image.authors="Manuel Bovo" LABEL org.opencontainers.image.maintainers="Manuel Bovo"