From 499f3874152c2014a02fa0034af31705640bd874 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 03:40:49 +0000 Subject: [PATCH] build(deps): bump python from 3.11-slim to 3.14-slim Bumps python from 3.11-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim 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 a0cdfc8..92bb321 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Multi-stage Dockerfile for DagLab # Stage 1: Build stage -FROM python:3.11-slim as builder +FROM python:3.14-slim as builder # Install build dependencies RUN apt-get update && apt-get install -y \ @@ -26,7 +26,7 @@ COPY . . RUN python -m build --wheel --outdir /wheels # Stage 2: Runtime stage -FROM python:3.11-slim +FROM python:3.14-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \