mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
15 lines
389 B
Docker
15 lines
389 B
Docker
|
FROM golang:1.20-bullseye
|
||
|
|
||
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||
|
&& apt-get -y install --no-install-recommends\
|
||
|
gettext-base=0.21-4 \
|
||
|
iptables=1.8.7-1 \
|
||
|
libgl1-mesa-dev=20.3.5-1 \
|
||
|
xorg-dev=1:7.7+22 \
|
||
|
libayatana-appindicator3-dev=0.5.5-2+deb11u2 \
|
||
|
&& apt-get clean \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
|
||
|
WORKDIR /app
|