From 0a965c3c8fb8af3abce9b3b4200b1a8d251e5d67 Mon Sep 17 00:00:00 2001 From: Olivier Vignaud Date: Tue, 15 Jul 2025 17:26:04 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20MSA-14848:=20Bump=20al?= =?UTF-8?q?malinux9=20->=20almalinux10.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1547ae25..151c0d79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN cp -R . /opt/fmc_repository/python-sdk && \ tar cf python-reference.tar.xz --exclude-vcs /opt/fmc_repository/ -I 'xz -T0' --checkpoint=1000 --checkpoint-action=echo='%{%Y-%m-%d %H:%M:%S}t ⏳ \033[1;37m(%d sec)\033[0m: \033[1;32m#%u\033[0m, \033[0;33m%{}T\033[0m' # }}} -FROM docker.io/ubiqube/ubi-almalinux9:latest +FROM docker.io/ubiqube/ubi-almalinux10:latest # Copy all resources to the final image {{{ RUN mkdir -p /opt/fmc_repository && chown -R 1000:1000 /opt/fmc_repository USER 1000 From 5bda690e73739369bfa897a5f403795553056965 Mon Sep 17 00:00:00 2001 From: Olivier Vignaud Date: Tue, 15 Jul 2025 17:26:32 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20CLA-993:=20Fix=20container?= =?UTF-8?q?=20install.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 0d731595..f7929ef8 100755 --- a/install.sh +++ b/install.sh @@ -1,9 +1,11 @@ #!/bin/bash +set -euo pipefail . /usr/share/install-libraries/il-lib.sh emit_step "Remove old msa_sdk folders." -rm -Rf /opt/fmc_repository/Process/PythonReference/msa_sdk* -ln -sf /opt/fmc_repository/python-sdk/msa_sdk /opt/fmc_repository/Process/PythonReference/msa_sdk +color mkdir -p /opt/fmc_repository/Process/PythonReference +color rm -Rf /opt/fmc_repository/Process/PythonReference/msa_sdk* +color ln -sf /opt/fmc_repository/python-sdk/msa_sdk /opt/fmc_repository/Process/PythonReference/msa_sdk emit_step "Create custom folder." -mkdir -p /opt/fmc_repository/Process/PythonReference/custom +color mkdir -p /opt/fmc_repository/Process/PythonReference/custom touch /opt/fmc_repository/Process/PythonReference/custom/__init__.py