mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-19 04:59:56 +00:00
- Add ARM7 (goarm:7) support in GoReleaser configuration - Simplify ARM platform references in .goreleaser.yaml
6 lines
190 B
Docker
6 lines
190 B
Docker
FROM gcr.io/distroless/base:debug
|
|
ENTRYPOINT [ "/go/bin/netbird-signal","run" ]
|
|
CMD ["--log-file", "console"]
|
|
ARG TARGETPLATFORM
|
|
COPY ${TARGETPLATFORM}/netbird-signal /go/bin/netbird-signal
|