From 94fc0138b5e496bacf2b22973da2dcb055a52645 Mon Sep 17 00:00:00 2001 From: clearml <> Date: Wed, 2 Apr 2025 14:39:34 +0300 Subject: [PATCH] Update base images to resolve several vulnerabilities --- docker/k8s-glue/glue-build/Dockerfile.alpine | 6 ++---- docker/k8s-glue/glue-build/Dockerfile.bullseye | 4 +--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/docker/k8s-glue/glue-build/Dockerfile.alpine b/docker/k8s-glue/glue-build/Dockerfile.alpine index 81679d3..d523490 100644 --- a/docker/k8s-glue/glue-build/Dockerfile.alpine +++ b/docker/k8s-glue/glue-build/Dockerfile.alpine @@ -1,6 +1,4 @@ -ARG TAG=3.7.17-alpine3.18 - -FROM python:${TAG} as build +FROM python:3.14-rc-alpine3.21 as build RUN apk add --no-cache \ gcc \ @@ -16,7 +14,7 @@ RUN python3 \ clearml-agent \ cryptography>=2.9 -FROM python:${TAG} as target +FROM python:3.14-rc-alpine3.21 as target WORKDIR /app diff --git a/docker/k8s-glue/glue-build/Dockerfile.bullseye b/docker/k8s-glue/glue-build/Dockerfile.bullseye index f84717b..bd0ea9d 100644 --- a/docker/k8s-glue/glue-build/Dockerfile.bullseye +++ b/docker/k8s-glue/glue-build/Dockerfile.bullseye @@ -1,6 +1,4 @@ -ARG TAG=3.7.17-slim-bullseye - -FROM python:${TAG} as target +FROM python:3.10-slim-bookworm as target ARG KUBECTL_VERSION=1.29.3