From 26ea9841d6e8927aac255a628dc260c6a4e9e4fe Mon Sep 17 00:00:00 2001 From: "public-glueops-renovatebot[bot]" <186083205+public-glueops-renovatebot[bot]@users.noreply.github.com> Date: Wed, 17 Sep 2025 13:57:08 +0000 Subject: [PATCH] feat: update python to v3.12.11 #minor --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 642b35e..9462c85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.11.13-alpine@sha256:8d8c6d3808243160605925c2a7ab2dc5c72d0e75651699b0639143613e0855b8 AS builder +FROM python:3.12.11-alpine@sha256:02a73ead8397e904cea6d17e18516f1df3590e05dc8823bd5b1c7f849227d272 AS builder # Set working directory WORKDIR /app @@ -11,7 +11,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Use a smaller base image for the final image -FROM python:3.11.13-alpine@sha256:8d8c6d3808243160605925c2a7ab2dc5c72d0e75651699b0639143613e0855b8 +FROM python:3.12.11-alpine@sha256:02a73ead8397e904cea6d17e18516f1df3590e05dc8823bd5b1c7f849227d272 # Set working directory WORKDIR /app