mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-20 07:21:27 +02:00
7 lines
202 B
Docker
7 lines
202 B
Docker
FROM alpine:3.24
|
|
RUN apk add --no-cache bash ca-certificates
|
|
ENTRYPOINT [ "/go/bin/netbird-relay" ]
|
|
ENV NB_LOG_FILE=console
|
|
ARG TARGETPLATFORM
|
|
COPY ${TARGETPLATFORM}/netbird-relay /go/bin/netbird-relay
|