-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
35 lines (31 loc) · 915 Bytes
/
Dockerfile
File metadata and controls
35 lines (31 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
pkg-config \
libgtk-4-dev \
libvte-2.91-gtk4-dev \
meson \
ninja-build \
libwayland-dev \
wayland-protocols \
libgirepository1.0-dev \
libdbus-1-dev \
zstd \
git \
curl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
RUN git clone --depth 1 --branch v1.3.0 \
https://github.com/wmww/gtk4-layer-shell.git /tmp/gtk4-layer-shell \
&& meson setup /tmp/gtk4-layer-shell/build /tmp/gtk4-layer-shell \
-Dexamples=false \
-Ddocs=false \
-Dtests=false \
-Dintrospection=false \
-Dvapi=false \
&& ninja -C /tmp/gtk4-layer-shell/build \
&& ninja -C /tmp/gtk4-layer-shell/build install \
&& ldconfig \
&& rm -rf /tmp/gtk4-layer-shell
ENV LIBRARY_PATH=/usr/local/lib