From 3c3111ad01bf14dd32209afaf8881bee982d1d9a Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Mon, 22 Apr 2024 10:14:07 +0200 Subject: [PATCH] Copy client binary to a directory in path (#1842) --- client/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 327d39f94..7f4060f3d 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:3.18.5 RUN apk add --no-cache ca-certificates iptables ip6tables ENV NB_FOREGROUND_MODE=true -ENTRYPOINT [ "/go/bin/netbird","up"] -COPY netbird /go/bin/netbird \ No newline at end of file +ENTRYPOINT [ "/usr/local/bin/netbird","up"] +COPY netbird /usr/local/bin/netbird \ No newline at end of file