Update workflow-designer init base image 69/141269/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Sun, 15 Jun 2025 11:17:37 +0000 (13:17 +0200)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Sun, 15 Jun 2025 11:17:37 +0000 (13:17 +0200)
- 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 <Fiete.Ostkamp@telekom.de>
sdc-workflow-designer-init/src/main/docker/Dockerfile

index 7165776..32808fe 100644 (file)
@@ -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