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
This commit is contained in:
Graham McIntire 2026-01-16 17:41:11 -06:00
parent 4269b246a7
commit 677c948f31
No known key found for this signature in database

View file

@ -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 \