From 6b3dc8ce2e06c15aecee6786d7e17a36ac5df354 Mon Sep 17 00:00:00 2001 From: Gunnar Andersson Date: Tue, 3 Dec 2024 23:10:44 +0100 Subject: [PATCH] Docker: Update ubuntu base to 24.04 Ubuntu 23.04 is EOL now Signed-off-by: Gunnar Andersson --- docker/Dockerfile.ubuntu | 2 +- ifex/model/ifex_ast_introspect.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index ef546fd..61a9046 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -4,7 +4,7 @@ # This file is part of IFEX project # --------------------------------------------------------------------------- -FROM ubuntu:23.04 +FROM ubuntu:24.04 # Install what's needed to compile python from source using pyenv RUN apt-get update && apt-get install -y bash build-essential curl git libbz2-dev libffi-dev liblzma-dev libncurses5-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev llvm lzma-dev make ncurses-dev python3-openssl python3 sudo tk-dev wget xz-utils zlib1g-dev diff --git a/ifex/model/ifex_ast_introspect.py b/ifex/model/ifex_ast_introspect.py index 29616b2..bb82779 100644 --- a/ifex/model/ifex_ast_introspect.py +++ b/ifex/model/ifex_ast_introspect.py @@ -292,3 +292,4 @@ def _simple_process(arg): print(f"The types of y are: {get_variant_types(y)}") print(f"The types of x are: {get_variant_types(x)}") print(f"The types of variant are: {get_variant_types("variant")}") +