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.
This commit is contained in:
parent
f5796988d7
commit
0c40cd71c1
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ FROM debian:sid-slim AS build
|
||||||
ARG version
|
ARG version
|
||||||
|
|
||||||
# Install dependencies
|
# 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
|
# Build
|
||||||
ADD https://github.com/ProtonMail/proton-bridge.git#${version} /build/
|
ADD https://github.com/ProtonMail/proton-bridge.git#${version} /build/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue