From 313a85f955896eb121e38b5e006767c8cc65b406 Mon Sep 17 00:00:00 2001 From: Alessandro De Maria Date: Wed, 17 Jan 2024 21:02:11 +0000 Subject: [PATCH] Use 3.11 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9860da09c..2835ec0d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the virtualenv for Kapitan -FROM python:3.10-slim AS python-builder +FROM python:3.11-slim AS python-builder ARG TARGETARCH ENV TARGETARCH=${TARGETARCH:-amd64} @@ -44,7 +44,7 @@ RUN pip install --editable .[test] \ # Final image with virtualenv built in previous step -FROM python:3.10-slim +FROM python:3.11-slim ENV PATH="/opt/venv/bin:${PATH}" ENV HELM_CACHE_HOME=".cache/helm"