From f5796988d752faf9374bec032047d2a7169d92b6 Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 17 Apr 2026 13:28:16 +0200 Subject: [PATCH] fix: add libfido2-dev to build stage for CGo linking Proton Bridge 3.22+ links against libfido2 via CGo. The build stage needs libfido2-dev (headers + pkg-config) in addition to the runtime libfido2-1 already added. --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index b1e6b53..9dcfd46 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -4,7 +4,7 @@ FROM debian:sid-slim AS build ARG version # Install dependencies -RUN apt-get update && apt-get install -y golang build-essential libsecret-1-dev +RUN apt-get update && apt-get install -y golang build-essential libsecret-1-dev libfido2-dev # Build ADD https://github.com/ProtonMail/proton-bridge.git#${version} /build/