From 67d3afd84eab2c4d04dd0143c3d4fed0bd4ccba4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 01:35:49 +0000 Subject: [PATCH] Update python Docker tag to v3.13 --- build/operator.Dockerfile | 2 +- build/webhook.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/operator.Dockerfile b/build/operator.Dockerfile index 97cb18f..fbbbb66 100644 --- a/build/operator.Dockerfile +++ b/build/operator.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9 +FROM python:3.13 COPY k8spin_operator/requirements.txt /src/requirements.txt RUN pip install -r /src/requirements.txt diff --git a/build/webhook.Dockerfile b/build/webhook.Dockerfile index 3fef19e..e32acd5 100644 --- a/build/webhook.Dockerfile +++ b/build/webhook.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9 +FROM python:3.13 COPY k8spin_webhook/requirements.txt /src/requirements.txt RUN pip install -r /src/requirements.txt