ci: fix bird package name (alpine ships 'bird', not 'bird2')
Build flock Image / build (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Donavan Fritz
2026-04-24 22:36:15 -05:00
parent eb1f5e0d8d
commit 0e1833dc7a
+1 -1
View File
@@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 go build -trimpath \
-o /out/flock-installer ./cmd/flock-installer
FROM alpine:3.21
RUN apk add --no-cache iproute2 bird2 ca-certificates
RUN apk add --no-cache iproute2 bird ca-certificates
COPY --from=build /out/flock /usr/local/bin/flock
COPY --from=build /out/flock-agent /usr/local/bin/flock-agent
COPY --from=build /out/flock-installer /usr/local/bin/flock-installer