mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-17 20:19:55 +00:00
Refactor UI --------- Co-authored-by: Eduard Gert <kontakt@eduardgert.de> Co-authored-by: braginini <bangvalo@gmail.com> Co-authored-by: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: riccardom <riccardomanfrin@gmail.com>
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
|