Skip to content

Commit

Permalink
Docker: Update ubuntu base to 24.04
Browse files Browse the repository at this point in the history
Ubuntu 23.04 is EOL now

Signed-off-by: Gunnar Andersson <[email protected]>
  • Loading branch information
gunnar-mb committed Dec 10, 2024
1 parent ad0ea0a commit 6b3dc8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ifex/model/ifex_ast_introspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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<this, that ,and,another > are: {get_variant_types("variant<this, that ,and,another >")}")

0 comments on commit 6b3dc8c

Please sign in to comment.