mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-21 23:53:14 +01:00
6 lines
224 B
Docker
6 lines
224 B
Docker
FROM gcr.io/distroless/base:debug
|
|
ENV WT_LOG_FILE=console
|
|
SHELL ["/busybox/sh","-c"]
|
|
RUN sed -i -E 's/(^root:.+)\/sbin\/nologin/\1\/busybox\/sh/g' /etc/passwd
|
|
ENTRYPOINT [ "/go/bin/netbird","up"]
|
|
COPY netbird /go/bin/netbird |