mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-19 21:29:09 +02:00
7 lines
217 B
Docker
7 lines
217 B
Docker
FROM alpine:3.24
|
|
RUN apk add --no-cache bash ca-certificates
|
|
ENTRYPOINT [ "/go/bin/netbird-signal","run" ]
|
|
CMD ["--log-file", "console"]
|
|
ARG TARGETPLATFORM
|
|
COPY ${TARGETPLATFORM}/netbird-signal /go/bin/netbird-signal
|