From e1eb4a58a539b2b37e4cb8476bd32c0c3c1a3c63 Mon Sep 17 00:00:00 2001 From: Bjoern Hiller Date: Wed, 1 May 2024 17:44:37 +0200 Subject: [PATCH] Add new CI image for Ubuntu Noble Numbat --- ci/Dockerfile.ubuntu-noble | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 ci/Dockerfile.ubuntu-noble diff --git a/ci/Dockerfile.ubuntu-noble b/ci/Dockerfile.ubuntu-noble new file mode 100644 index 0000000..24a9d9b --- /dev/null +++ b/ci/Dockerfile.ubuntu-noble @@ -0,0 +1,33 @@ +FROM ubuntu:noble + +RUN export DEBIAN_FRONTEND=noninteractive \ + && apt-get update \ + && apt-get install -y --no-install-recommends \ + build-essential \ + ca-certificates \ + clang \ + curl \ + dbus \ + git \ + lcov \ + libdbus-1-dev \ + libglib2.0-dev \ + libnotify-dev \ + libpango1.0-dev \ + librsvg2-common \ + libwayland-bin \ + libwayland-client0 \ + libwayland-cursor0 \ + libwayland-dev \ + libwayland-server0 \ + libx11-dev \ + libxinerama-dev \ + libxrandr-dev \ + libxss-dev \ + valgrind \ + wayland-protocols \ + && apt-get clean + +ADD entrypoint.sh /srv/entrypoint + +ENTRYPOINT ["/srv/entrypoint"]