From 51e1d3ab8f2d9b1840cf6b5855cb40f0de957603 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Mon, 9 Sep 2024 18:44:37 +0200 Subject: [PATCH] fix: client/Dockerfile to reduce vulnerabilities (#2548) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7895536 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7895536 Co-authored-by: snyk-bot --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index a3220bf33..b9f7c1355 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19 +FROM alpine:3.20 RUN apk add --no-cache ca-certificates iptables ip6tables ENV NB_FOREGROUND_MODE=true ENTRYPOINT [ "/usr/local/bin/netbird","up"]