From 677c948f31fd68eac18f7bc9c54e205155333da3 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 16 Jan 2026 17:41:11 -0600 Subject: [PATCH] Add OpenSSL build dependencies to Dockerfile Fixes build failure caused by missing openssl-dev and openssl-libs-static packages needed for compiling tokio-tungstenite with native-tls feature --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dd5f92a..46696bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ARG TARGETPLATFORM WORKDIR /app # Install build dependencies -RUN apk add --no-cache musl-dev protobuf-dev +RUN apk add --no-cache musl-dev protobuf-dev openssl-dev openssl-libs-static # Determine Rust target based on platform and add it RUN case "$TARGETPLATFORM" in \