- Replace Alpine base image with Distroless base:debug across Dockerfiles

- Add ARM7 (goarm:7) support in GoReleaser configuration
- Simplify ARM platform references in .goreleaser.yaml
This commit is contained in:
mlsmaycon
2026-06-16 13:40:25 +02:00
parent 2ef70bcb6c
commit 410b310f28
5 changed files with 22 additions and 14 deletions

View File

@@ -6,8 +6,7 @@ RUN echo "netbird:x:1000:1000:netbird:/var/lib/netbird:/sbin/nologin" > /tmp/pas
mkdir -p /tmp/var/lib/netbird && \
mkdir -p /tmp/certs
FROM alpine:3.24
RUN apk add --no-cache bash ca-certificates
FROM gcr.io/distroless/base:debug
ARG TARGETPLATFORM
COPY ${TARGETPLATFORM}/netbird-proxy /go/bin/netbird-proxy
COPY --from=builder /tmp/passwd /etc/passwd