From 93702ac10a4285ae139c178c28cf70363cbf37d7 Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Sun, 15 Jun 2025 13:17:37 +0200 Subject: [PATCH] Update workflow-designer init base image - update base image (python2.7 -> python:3.12) - update cassandra-driver and cqlsh packages that are installed in the image Issue-ID: SDC-4739 Change-Id: Id391c2d253d15c066c1724f7f83dd1ce040b2b47 Signed-off-by: Fiete Ostkamp --- sdc-workflow-designer-init/src/main/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdc-workflow-designer-init/src/main/docker/Dockerfile b/sdc-workflow-designer-init/src/main/docker/Dockerfile index 71657763..32808fe6 100644 --- a/sdc-workflow-designer-init/src/main/docker/Dockerfile +++ b/sdc-workflow-designer-init/src/main/docker/Dockerfile @@ -1,6 +1,6 @@ -FROM python:2.7-alpine3.20 +FROM python:3.12-alpine -RUN pip install cassandra-driver==3.25.0 cqlsh==5.0.4 +RUN pip install cassandra-driver==3.29.2 cqlsh==6.2.0 RUN addgroup -g 1000 sdc && adduser -S -u 1000 -G sdc -s /bin/sh sdc USER sdc -- 2.16.6