From 337a69161cc387c62eae812b89f92d72d758ee9a Mon Sep 17 00:00:00 2001 From: XiTatiON <1818975+xitation@users.noreply.github.com> Date: Mon, 23 Mar 2026 11:28:30 +1100 Subject: [PATCH] Added missing build and runtime deps for latest build --- build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index e90ff25..34a1e45 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 pkg-config libcbor-dev # Build ADD https://github.com/ProtonMail/proton-bridge.git#${version} /build/ @@ -19,7 +19,7 @@ EXPOSE 143/tcp # Install dependencies and protonmail bridge RUN apt-get update \ - && apt-get install -y --no-install-recommends socat pass libsecret-1-0 ca-certificates \ + && apt-get install -y --no-install-recommends socat pass libsecret-1-0 ca-certificates libcbor0.10 libfido2-1 \ && rm -rf /var/lib/apt/lists/* # Copy bash scripts