From 82055440172c63760c19e55d822ca2c5938070b2 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Sat, 13 Apr 2024 10:17:01 +0200 Subject: [PATCH] Copy client binary to a directory in path --- client/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 327d39f94a1..7f4060f3d16 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