From 0a42f3ae99adc02cbe640007f6f4b695e8838e1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:52:51 +0000 Subject: [PATCH 1/2] Bump python from 3.10-slim to 3.12-slim Bumps python from 3.10-slim to 3.12-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 306deed..b923b51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.12-slim COPY . /app WORKDIR /app From fe0c16a62d5a6ab8207ae96c79173ff33450a7b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Barbosa=20Marques=20dos=20Santos?= Date: Fri, 13 Sep 2024 13:00:09 -0300 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index b923b51..40ef9e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM python:3.12-slim +# Install build-essential and any other necessary system dependencies +RUN apt-get update && apt-get install -y build-essential + COPY . /app WORKDIR /app