mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-16 11:39:57 +00:00
- introduce variables to avoid publishing latest docker tags and installers - Refactor .goreleaser.yaml to simplify docker configurations and add environment-driven flags - removed management debug containers (it was doing only log var) - Stopped building arm v6 32bits in favor of v7 32 bits for services (not client) - Add target argument to docker files
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
|