From 7891856df3b89c811f28bc97ff6f74067421491c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 03:00:50 +0000 Subject: [PATCH] Update python Docker tag to v3.13 --- Dockerfile | 2 +- Dockerfile-azure-pipelines | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f1617638..28575845 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # gcr.io/distroless/python3-debian11 (runtime env is using 3.9 and that's imporatant for native dependencies) -FROM python:3.9-slim AS builder +FROM python:3.13-slim AS builder WORKDIR / diff --git a/Dockerfile-azure-pipelines b/Dockerfile-azure-pipelines index 86cc4617..0afbf54f 100644 --- a/Dockerfile-azure-pipelines +++ b/Dockerfile-azure-pipelines @@ -1,5 +1,5 @@ # gcr.io/distroless/python3-debian11 (runtime env is using 3.9 and that's imporatant for native dependencies) -FROM python:3.9-slim AS builder +FROM python:3.13-slim AS builder WORKDIR / @@ -20,7 +20,7 @@ RUN pip3 install --target=/app -r requirements.txt --no-deps COPY cognite/transformations_cli/ /app/cognite/transformations_cli/ # Distroless does not work with Azure pipelines -FROM python:3.9-bullseye +FROM python:3.13-bullseye COPY --from=builder /app /app ENV PYTHONPATH /app