mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-31 20:11:31 +02:00
* Bump go version to 1.26 and go-quic to v0.62.0 * Replace deprecated ecdsa public key assembly and add tests for jwt * Update goversioninfo * Pin go toolchain to 1.26.7
15 lines
399 B
Docker
15 lines
399 B
Docker
FROM golang:1.26.7-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
|