From 0c40cd71c1d14d9c0f2bbe28b59d83a1e423edea Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 17 Apr 2026 13:42:49 +0200 Subject: [PATCH] fix: add libcbor-dev to build stage (transitive fido2 dep) libfido2 requires libcbor at link time via CGo; libcbor-dev was missing from the build stage, causing ld to fail. --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 9dcfd46..a5f7d3d 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 libfido2-dev +RUN apt-get update && apt-get install -y golang build-essential libsecret-1-dev libfido2-dev libcbor-dev # Build ADD https://github.com/ProtonMail/proton-bridge.git#${version} /build/