2024-10-08 20:09:10 +00:00
|
|
|
FROM golang:1.22 as build
|
2023-10-15 19:50:59 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go mod tidy && CGO_ENABLED=0 GOOS=linux go build -a -tags netgo -ldflags '-w -extldflags "-static"' -o metallb-ip-floater ./cmd/
|
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
|
|
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
COPY --from=build /etc/passwd /etc/passwd
|
|
|
|
COPY --from=build /etc/group /etc/group
|
|
|
|
COPY --from=build --chown=65534:65534 /app/metallb-ip-floater /usr/local/bin/metallb-ip-floater
|
|
|
|
|
|
|
|
USER nobody
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/metallb-ip-floater"]
|