mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-22 08:21:30 +02:00
724c6a0 introduced the top-level trustedproxy package and the proxy
imports it, but proxy/Dockerfile.multistage enumerates copied
directories and was not updated, so the agent-network e2e harness
failed to build the proxy image (module provides no such package).
The combined and client images COPY the whole tree and are unaffected.
39 lines
1.1 KiB
Docker
39 lines
1.1 KiB
Docker
FROM golang:1.25-alpine AS builder
|
|
WORKDIR /app
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY client ./client
|
|
COPY dns ./dns
|
|
COPY encryption ./encryption
|
|
COPY flow ./flow
|
|
COPY formatter ./formatter
|
|
COPY monotime ./monotime
|
|
COPY proxy ./proxy
|
|
COPY route ./route
|
|
COPY shared ./shared
|
|
COPY sharedsock ./sharedsock
|
|
COPY trustedproxy ./trustedproxy
|
|
COPY upload-server ./upload-server
|
|
COPY util ./util
|
|
COPY version ./version
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o netbird-proxy ./proxy/cmd/proxy
|
|
|
|
RUN echo "netbird:x:1000:1000:netbird:/var/lib/netbird:/sbin/nologin" > /tmp/passwd && \
|
|
echo "netbird:x:1000:netbird" > /tmp/group && \
|
|
mkdir -p /tmp/var/lib/netbird && \
|
|
mkdir -p /tmp/certs
|
|
|
|
FROM gcr.io/distroless/base:debug
|
|
COPY --from=builder /app/netbird-proxy /usr/bin/netbird-proxy
|
|
COPY --from=builder /tmp/passwd /etc/passwd
|
|
COPY --from=builder /tmp/group /etc/group
|
|
COPY --from=builder --chown=1000:1000 /tmp/var/lib/netbird /var/lib/netbird
|
|
COPY --from=builder --chown=1000:1000 --chmod=755 /tmp/certs /certs
|
|
USER netbird:netbird
|
|
ENV HOME=/var/lib/netbird
|
|
ENV NB_PROXY_ADDRESS=":8443"
|
|
EXPOSE 8443
|
|
ENTRYPOINT ["/usr/bin/netbird-proxy"]
|