mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-16 11:39:57 +00:00
The Wails v3 tray is a pure DBus StatusNotifierItem implementation and no longer links libappindicator (a Fyne-era dependency). Drop the libayatana-appindicator runtime and build deps, and move the rpm package and dev-dependency docs onto the GTK4 / WebKitGTK 6.0 stack that the default (non-gtk3) build actually links against.
15 lines
397 B
Docker
15 lines
397 B
Docker
FROM golang:1.25-bookworm
|
|
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y install --no-install-recommends\
|
|
gettext-base=0.21-12 \
|
|
iptables=1.8.9-2 \
|
|
libgl1-mesa-dev=22.3.6-1+deb12u1 \
|
|
xorg-dev=1:7.7+23 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& go install -v golang.org/x/tools/gopls@latest
|
|
|
|
|
|
WORKDIR /app
|