mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
6 lines
233 B
Docker
6 lines
233 B
Docker
FROM ubuntu:24.04
|
|
RUN apt update && apt install -y ca-certificates && rm -fr /var/cache/apt
|
|
ENTRYPOINT [ "/go/bin/netbird-mgmt","management","--log-level","debug"]
|
|
CMD ["--log-file", "console"]
|
|
COPY netbird-mgmt /go/bin/netbird-mgmt
|