From a3c5fa13077561d417edda50d0da5d87bf13abb3 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Tue, 12 Jul 2022 15:35:51 +0200 Subject: [PATCH] Add PATH to client Dockerfile (#389) Useful when SSH to client containers --- client/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/client/Dockerfile b/client/Dockerfile index fe2ad8015..9f0428049 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,5 +1,6 @@ FROM gcr.io/distroless/base:debug ENV WT_LOG_FILE=console +ENV PATH=/sbin:/usr/sbin:/bin:/usr/bin:/busybox SHELL ["/busybox/sh","-c"] RUN sed -i -E 's/(^root:.+)\/sbin\/nologin/\1\/busybox\/sh/g' /etc/passwd ENTRYPOINT [ "/go/bin/netbird","up"]