From 04baea8c35874ee5f5cd39e1134324ca417d3565 Mon Sep 17 00:00:00 2001 From: Pascal Fischer Date: Wed, 20 Dec 2023 18:38:48 +0100 Subject: [PATCH] use specific apline image version so the iptables will be installed with version 1.8.9 instead of 1.8.10 --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 63b4a3320b8..327d39f94a1 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3 +FROM alpine:3.18.5 RUN apk add --no-cache ca-certificates iptables ip6tables ENV NB_FOREGROUND_MODE=true ENTRYPOINT [ "/go/bin/netbird","up"]